diff options
| author | Dan Nicolaescu | 2005-09-27 18:48:59 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2005-09-27 18:48:59 +0000 |
| commit | 43f15d4afee5beaaec7a2e8dc8b11ea2f9e3daea (patch) | |
| tree | c6f0878596c767986ddbb28fabb0a5fff22c5774 /src/fns.c | |
| parent | d1b76779461cfe78c0a1b436899cebc3e5e0f253 (diff) | |
| download | emacs-43f15d4afee5beaaec7a2e8dc8b11ea2f9e3daea.tar.gz emacs-43f15d4afee5beaaec7a2e8dc8b11ea2f9e3daea.zip | |
* xlwmenu.c (find_next_selectable):
(find_prev_selectable): Add missing parameter
declarations.
* xfaces.c (lookup_derived_face): Add parameter type.
* xdisp.c (cursor_row_fully_visible_p): Add parameter type.
* marker.c (verify_bytepos): Add parameter type.
* process.c (get_operating_system_release): Move prototype ...
* systime.h (get_operating_system_release): ... here.
* xterm.c (set_vertical_scroll_bar): Move prototype ...
* xterm.h: ... here.
* fns.c (internal_equal, seed_random): Fix prototypes.
(internal_equal): Add missing parameter.
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -77,10 +77,10 @@ Lisp_Object Qcodeset, Qdays, Qmonths, Qpaper; | |||
| 77 | 77 | ||
| 78 | extern Lisp_Object Qinput_method_function; | 78 | extern Lisp_Object Qinput_method_function; |
| 79 | 79 | ||
| 80 | static int internal_equal (); | 80 | static int internal_equal P_ ((Lisp_Object , Lisp_Object, int, int)); |
| 81 | 81 | ||
| 82 | extern long get_random (); | 82 | extern long get_random (); |
| 83 | extern void seed_random (); | 83 | extern void seed_random P_ ((long)); |
| 84 | 84 | ||
| 85 | #ifndef HAVE_UNISTD_H | 85 | #ifndef HAVE_UNISTD_H |
| 86 | extern long time (); | 86 | extern long time (); |
| @@ -2250,7 +2250,7 @@ internal_equal (o1, o2, depth, props) | |||
| 2250 | if (!internal_equal (OVERLAY_START (o1), OVERLAY_START (o2), | 2250 | if (!internal_equal (OVERLAY_START (o1), OVERLAY_START (o2), |
| 2251 | depth + 1, props) | 2251 | depth + 1, props) |
| 2252 | || !internal_equal (OVERLAY_END (o1), OVERLAY_END (o2), | 2252 | || !internal_equal (OVERLAY_END (o1), OVERLAY_END (o2), |
| 2253 | depth + 1)) | 2253 | depth + 1, props)) |
| 2254 | return 0; | 2254 | return 0; |
| 2255 | o1 = XOVERLAY (o1)->plist; | 2255 | o1 = XOVERLAY (o1)->plist; |
| 2256 | o2 = XOVERLAY (o2)->plist; | 2256 | o2 = XOVERLAY (o2)->plist; |