1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-01 18:00:40 -08:00

* src/lisp.h (Fread_file_name): Restore EXFUN

(it's not a normal DEFUN and did not make it into globals.h).
This commit is contained in:
Glenn Morris 2012-07-03 16:34:47 -04:00
parent 404dbd373a
commit e2017fe2a1
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2012-07-03 Glenn Morris <rgm@gnu.org>
* lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
and did not make it into globals.h).
2012-07-03 Tom Tromey <tromey@redhat.com>
* window.c (Fset_window_margins, Fset_window_fringes)

View file

@ -1,6 +1,6 @@
/* Fundamental definitions for GNU Emacs Lisp interpreter.
Copyright (C) 1985-1987, 1993-1995, 1997-2012
Free Software Foundation, Inc.
Copyright (C) 1985-1987, 1993-1995, 1997-2012 Free Software Foundation, Inc.
This file is part of GNU Emacs.
@ -2835,6 +2835,7 @@ extern Lisp_Object Qfile_directory_p;
extern Lisp_Object Qinsert_file_contents;
extern Lisp_Object Qfile_name_history;
extern Lisp_Object expand_and_dir_to_file (Lisp_Object, Lisp_Object);
EXFUN (Fread_file_name, 6); /* not a normal DEFUN */
extern Lisp_Object close_file_unwind (Lisp_Object);
extern Lisp_Object restore_point_unwind (Lisp_Object);
extern _Noreturn void report_file_error (const char *, Lisp_Object);