summaryrefslogtreecommitdiff
path: root/src/info2html/html.c
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2001-07-11 21:31:54 +0000
committerDarin Adler <darin@src.gnome.org>2001-07-11 21:31:54 +0000
commit334b505f7cf2e53209807178c772c39a95cf5ca5 (patch)
tree8c5d1cda9479c3de8c5a733d129d489f8b6e4afe /src/info2html/html.c
parenta323ba537cba9e907d53f149c8e07bd2e56f18af (diff)
downloadyelp-mjs-patches-to-redhat-patches.tar.gz
* components/help/converters/gnome-info2html2/html.c: (write_menu_entry_html): * components/help/converters/gnome-man2html2/gnome-man2html.c: (add_links), (scan_escape), (scan_format), (scan_table), (scan_expression), (scan_request), (scan_troff), (scan_troff_mandoc), (main): * src/nautilus-first-time-druid.c: (load_netscape_proxy_settings): * src/nautilus-property-browser.c: (emblem_keyword_valid): Fix code that was using <ctype.h> functions and passing char's rather than int's (using the standard "cast to unsigned char" trick). * libnautilus-private/nautilus-file.c: (nautilus_file_denies_access_permission), (nautilus_file_can_set_permissions), (nautilus_file_set_owner), (nautilus_file_get_group_name), (nautilus_file_can_set_group), (nautilus_file_get_settable_group_names), (nautilus_file_set_group): Get rid of the assumption that GnomeVFSFileInfo field types match the platform-specific uid_t and gid_t. This involves doing a few more type casts. (nautilus_extract_top_left_text): Fix a use of isprint on a char rather than an int. * libnautilus-private/nautilus-volume-monitor.c: Added ifdefs so this file can compile for Solaris without warnings. * test/test.c: (test_window_set_title_with_pid): Don't assume that getpid() returns an int. Instead cast it to unsigned long for printing.
Diffstat (limited to 'src/info2html/html.c')
-rw-r--r--src/info2html/html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/info2html/html.c b/src/info2html/html.c
index f5dd8e54..53378eeb 100644
--- a/src/info2html/html.c
+++ b/src/info2html/html.c
@@ -861,7 +861,7 @@ void write_menu_entry_html( FILE *f, char *p, char *nodefile, char **menu_end )
}
for (i=1; i<4; i++)
- if (!isspace(*(realend+i)) && *(realend+i) != '\n')
+ if (!isspace((guchar)*(realend+i)) && *(realend+i) != '\n')
{
done = 1;
break;