mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 23:13:40 +02:00
Try compiling before committing, why don't you? Simple fixes for my stupid
Sat Jun 30 13:18:28 2001 Owen Taylor <otaylor@redhat.com> * glib/gstrfuncs.c glib/gstring.h: Try compiling before committing, why don't you? Simple fixes for my stupid typos.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
Sat Jun 30 13:18:28 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* glib/gstrfuncs.c glib/gstring.h: Try compiling
|
||||
before committing, why don't you? Simple fixes
|
||||
for my stupid typos.
|
||||
|
||||
Sat Jun 30 12:49:26 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
Patch from Darin Adler (#54166)
|
||||
|
@@ -1,3 +1,9 @@
|
||||
Sat Jun 30 13:18:28 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* glib/gstrfuncs.c glib/gstring.h: Try compiling
|
||||
before committing, why don't you? Simple fixes
|
||||
for my stupid typos.
|
||||
|
||||
Sat Jun 30 12:49:26 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
Patch from Darin Adler (#54166)
|
||||
|
@@ -1,3 +1,9 @@
|
||||
Sat Jun 30 13:18:28 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* glib/gstrfuncs.c glib/gstring.h: Try compiling
|
||||
before committing, why don't you? Simple fixes
|
||||
for my stupid typos.
|
||||
|
||||
Sat Jun 30 12:49:26 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
Patch from Darin Adler (#54166)
|
||||
|
@@ -1,3 +1,9 @@
|
||||
Sat Jun 30 13:18:28 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* glib/gstrfuncs.c glib/gstring.h: Try compiling
|
||||
before committing, why don't you? Simple fixes
|
||||
for my stupid typos.
|
||||
|
||||
Sat Jun 30 12:49:26 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
Patch from Darin Adler (#54166)
|
||||
|
@@ -1,3 +1,9 @@
|
||||
Sat Jun 30 13:18:28 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* glib/gstrfuncs.c glib/gstring.h: Try compiling
|
||||
before committing, why don't you? Simple fixes
|
||||
for my stupid typos.
|
||||
|
||||
Sat Jun 30 12:49:26 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
Patch from Darin Adler (#54166)
|
||||
|
@@ -1,3 +1,9 @@
|
||||
Sat Jun 30 13:18:28 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* glib/gstrfuncs.c glib/gstring.h: Try compiling
|
||||
before committing, why don't you? Simple fixes
|
||||
for my stupid typos.
|
||||
|
||||
Sat Jun 30 12:49:26 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
Patch from Darin Adler (#54166)
|
||||
|
@@ -1,3 +1,9 @@
|
||||
Sat Jun 30 13:18:28 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* glib/gstrfuncs.c glib/gstring.h: Try compiling
|
||||
before committing, why don't you? Simple fixes
|
||||
for my stupid typos.
|
||||
|
||||
Sat Jun 30 12:49:26 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
Patch from Darin Adler (#54166)
|
||||
|
@@ -1,3 +1,9 @@
|
||||
Sat Jun 30 13:18:28 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* glib/gstrfuncs.c glib/gstring.h: Try compiling
|
||||
before committing, why don't you? Simple fixes
|
||||
for my stupid typos.
|
||||
|
||||
Sat Jun 30 12:49:26 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
Patch from Darin Adler (#54166)
|
||||
|
@@ -1000,7 +1000,7 @@ g_ascii_strdown (gchar *string)
|
||||
gchar*
|
||||
g_ascii_strup (gchar *string)
|
||||
{
|
||||
gchar *s;
|
||||
gchar *result, *s;
|
||||
|
||||
g_return_val_if_fail (string != NULL, NULL);
|
||||
|
||||
@@ -1094,7 +1094,7 @@ g_strreverse (gchar *string)
|
||||
gboolean
|
||||
g_ascii_isalpha (gchar c)
|
||||
{
|
||||
return g_ascii_is_lower (c) || g_ascii_is_upper (c);
|
||||
return g_ascii_islower (c) || g_ascii_isupper (c);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -1115,7 +1115,7 @@ g_ascii_isalpha (gchar c)
|
||||
gboolean
|
||||
g_ascii_isalnum (gchar c)
|
||||
{
|
||||
return g_ascii_is_alpha (c) || isdigit (c);
|
||||
return g_ascii_isalpha (c) || isdigit (c);
|
||||
}
|
||||
|
||||
|
||||
|
@@ -106,8 +106,6 @@ void g_string_printfa (GString *string,
|
||||
|
||||
#ifndef G_DISABLE_DEPRECATED
|
||||
|
||||
#ifndef G_DISABLE_DEPRECATED
|
||||
|
||||
/* The following two functions are deprecated and will be removed in
|
||||
* the next major release. They use the locale-specific tolower and
|
||||
* toupper, which is almost never the right thing.
|
||||
|
Reference in New Issue
Block a user