diff options
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; |