Mercurial > emacs
diff src/fileio.c @ 18613:614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Fri, 04 Jul 1997 20:44:52 +0000 |
| parents | d4c11d4de7f4 |
| children | 72b27986e71d |
line wrap: on
line diff
--- a/src/fileio.c Fri Jul 04 20:43:49 1997 +0000 +++ b/src/fileio.c Fri Jul 04 20:44:52 1997 +0000 @@ -3726,6 +3726,7 @@ } static Lisp_Object build_annotations (); +extern Lisp_Object Ffile_locked_p (); /* If build_annotations switched buffers, switch back to BUF. Kill the temporary buffer that was selected in the meantime. @@ -5065,7 +5066,7 @@ This variable affects the built-in functions only on Windows,\n\ on other platforms, it is initialized so that Lisp code can find out\n\ what the normal separator is."); - Vdirectory_sep_char = '/'; + XSETFASTINT (Vdirectory_sep_char, '/'); DEFVAR_LISP ("file-name-handler-alist", &Vfile_name_handler_alist, "*Alist of elements (REGEXP . HANDLER) for file names handled specially.\n\
