aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
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;