aboutsummaryrefslogtreecommitdiffstats
path: root/src/lread.c
diff options
context:
space:
mode:
authorDmitry Antipov2013-01-17 10:29:40 +0400
committerDmitry Antipov2013-01-17 10:29:40 +0400
commit468afbaceaeb045f69b1a47aa1550a2556cd7dfd (patch)
treeff5bd77d87a3f52802196d04ef4c6ca493c47fe7 /src/lread.c
parent0e70695aa48cb34d8c3df6e4d4173b6adb474b23 (diff)
downloademacs-468afbaceaeb045f69b1a47aa1550a2556cd7dfd.tar.gz
emacs-468afbaceaeb045f69b1a47aa1550a2556cd7dfd.zip
* lisp.h (toplevel): Add comment about using Lisp_Save_Value
objects, related functions and macros. (make_save_value): Adjust prototype. (make_save_pointer): New prototype. (SAFE_NALLOCA): Fix indentation. Use make_save_pointer. (SAFE_ALLOCA_LISP): Adjust make_save_value usage. * alloc.c (format_save_value): Rename to make_save_value. (make_save_pointer): New function. (record_xmalloc): Use make_save_pointer. * dired.c, editfns.c, fileio.c, font.c, gtkutil.c, lread.c: * nsmenu.m, nsterm.m, xfns.c, xmenu.c, xselect.c, keymap.c: Change users of make_save_value to make_save_pointer. Likewise for format_save_value and make_save_value.
Diffstat (limited to 'src/lread.c')
-rw-r--r--src/lread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c
index a01cf099b49..09eccb0fb30 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -1298,7 +1298,7 @@ Return t if the file exists and loads successfully. */)
1298 message_with_string ("Loading %s...", file, 1); 1298 message_with_string ("Loading %s...", file, 1);
1299 } 1299 }
1300 1300
1301 record_unwind_protect (load_unwind, make_save_value (stream, 0)); 1301 record_unwind_protect (load_unwind, make_save_pointer (stream));
1302 record_unwind_protect (load_descriptor_unwind, load_descriptor_list); 1302 record_unwind_protect (load_descriptor_unwind, load_descriptor_list);
1303 specbind (Qload_file_name, found); 1303 specbind (Qload_file_name, found);
1304 specbind (Qinhibit_file_name_operation, Qnil); 1304 specbind (Qinhibit_file_name_operation, Qnil);