aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
authorDan Nicolaescu2005-09-27 18:48:59 +0000
committerDan Nicolaescu2005-09-27 18:48:59 +0000
commit43f15d4afee5beaaec7a2e8dc8b11ea2f9e3daea (patch)
treec6f0878596c767986ddbb28fabb0a5fff22c5774 /src/fns.c
parentd1b76779461cfe78c0a1b436899cebc3e5e0f253 (diff)
downloademacs-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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fns.c b/src/fns.c
index 3c23aef282e..9357fcddab0 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -77,10 +77,10 @@ Lisp_Object Qcodeset, Qdays, Qmonths, Qpaper;
77 77
78extern Lisp_Object Qinput_method_function; 78extern Lisp_Object Qinput_method_function;
79 79
80static int internal_equal (); 80static int internal_equal P_ ((Lisp_Object , Lisp_Object, int, int));
81 81
82extern long get_random (); 82extern long get_random ();
83extern void seed_random (); 83extern void seed_random P_ ((long));
84 84
85#ifndef HAVE_UNISTD_H 85#ifndef HAVE_UNISTD_H
86extern long time (); 86extern 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;