Mercurial > emacs
changeset 109542:6b02202d9fdc
* lread.c (unreadpure, mapatoms_1): Make static.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Mon, 26 Jul 2010 02:43:58 +0200 |
parents | d4902495c889 |
children | 1f97e508ee42 197e874deb67 0526a9cf04a3 |
files | src/ChangeLog src/lread.c |
diffstat | 2 files changed, 6 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Sun Jul 25 21:30:14 2010 +0200 +++ b/src/ChangeLog Mon Jul 26 02:43:58 2010 +0200 @@ -1,3 +1,7 @@ +2010-07-26 Juanma Barranquero <lekktu@gmail.com> + + * lread.c (unreadpure, mapatoms_1): Make static. + 2010-07-25 Juanma Barranquero <lekktu@gmail.com> * terminfo.c (tparam): Fix prototype of tparm.
--- a/src/lread.c Sun Jul 25 21:30:14 2010 +0200 +++ b/src/lread.c Mon Jul 26 02:43:58 2010 +0200 @@ -1276,7 +1276,6 @@ static Lisp_Object load_unwind (Lisp_Object arg) /* used as unwind-protect function in load */ - { FILE *stream = (FILE *) XSAVE_VALUE (arg)->pointer; if (stream != NULL) @@ -1567,9 +1566,8 @@ Vload_history); } -Lisp_Object +static Lisp_Object unreadpure (Lisp_Object junk) /* Used as unwind-protect function in readevalloop */ - { read_pure = 0; return Qnil; @@ -3818,7 +3816,7 @@ } } -void +static void mapatoms_1 (Lisp_Object sym, Lisp_Object function) { call1 (function, sym);