diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2005-09-24 20:37:14 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2005-09-24 20:37:14 +0000 |
commit | c5caf981467709eecedc4bd22a84e1ed29d097e1 (patch) | |
tree | 3ab7e9cd9419fa695419d368088c750bb371c3bb /lwlib/xlwmenu.c | |
parent | 621f893a9dfdaa782756a47ce99790dd026efce9 (diff) | |
download | emacs-c5caf981467709eecedc4bd22a84e1ed29d097e1.tar.gz |
Fix the return type for x_clear_errors and
x_uncatch_errors.
Diffstat (limited to 'lwlib/xlwmenu.c')
-rw-r--r-- | lwlib/xlwmenu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lwlib/xlwmenu.c b/lwlib/xlwmenu.c index f1ee1b68e9b..80ca418bf52 100644 --- a/lwlib/xlwmenu.c +++ b/lwlib/xlwmenu.c @@ -59,9 +59,9 @@ extern int x_alloc_lighter_color_for_widget __P ((Widget, Display*, Colormap, unsigned long *, double, int)); extern int x_catch_errors __P ((Display*)); -extern int x_uncatch_errors __P ((Display*, int)); +extern void x_uncatch_errors P_ ((Display *, int)); extern int x_had_errors_p __P ((Display*)); -extern int x_clear_errors __P ((Display*)); +extern void x_clear_errors __P ((Display*)); extern unsigned long x_copy_dpy_color __P ((Display *, Colormap, unsigned long)); |