diff options
| author | Dan Nicolaescu | 2005-09-24 20:37:14 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2005-09-24 20:37:14 +0000 |
| commit | c5caf981467709eecedc4bd22a84e1ed29d097e1 (patch) | |
| tree | 3ab7e9cd9419fa695419d368088c750bb371c3bb | |
| parent | 621f893a9dfdaa782756a47ce99790dd026efce9 (diff) | |
| download | emacs-c5caf981467709eecedc4bd22a84e1ed29d097e1.tar.gz emacs-c5caf981467709eecedc4bd22a84e1ed29d097e1.zip | |
Fix the return type for x_clear_errors and
x_uncatch_errors.
| -rw-r--r-- | lwlib/ChangeLog | 5 | ||||
| -rw-r--r-- | lwlib/xlwmenu.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lwlib/ChangeLog b/lwlib/ChangeLog index 4ce570b989c..b0708be5f87 100644 --- a/lwlib/ChangeLog +++ b/lwlib/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-09-24 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * xlwmenu.c: Fix the return type for x_clear_errors and | ||
| 4 | x_uncatch_errors. | ||
| 5 | |||
| 1 | 2005-07-19 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 6 | 2005-07-19 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 2 | 7 | ||
| 3 | * lwlib-Xm.c (make_menu_in_widget): Disable drag and drop for | 8 | * lwlib-Xm.c (make_menu_in_widget): Disable drag and drop for |
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, | |||
| 59 | unsigned long *, | 59 | unsigned long *, |
| 60 | double, int)); | 60 | double, int)); |
| 61 | extern int x_catch_errors __P ((Display*)); | 61 | extern int x_catch_errors __P ((Display*)); |
| 62 | extern int x_uncatch_errors __P ((Display*, int)); | 62 | extern void x_uncatch_errors P_ ((Display *, int)); |
| 63 | extern int x_had_errors_p __P ((Display*)); | 63 | extern int x_had_errors_p __P ((Display*)); |
| 64 | extern int x_clear_errors __P ((Display*)); | 64 | extern void x_clear_errors __P ((Display*)); |
| 65 | extern unsigned long x_copy_dpy_color __P ((Display *, Colormap, | 65 | extern unsigned long x_copy_dpy_color __P ((Display *, Colormap, |
| 66 | unsigned long)); | 66 | unsigned long)); |
| 67 | 67 | ||