1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-30 00:51:50 -08:00

(Fdump_emacs): Fix a typo in "command-line-processed".

This commit is contained in:
Eli Zaretskii 2002-03-26 14:41:44 +00:00
parent 40ae145bc2
commit 4aaa36072b
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2002-03-26 Eli Zaretskii <eliz@is.elta.co.il>
* emacs.c (Fdump_emacs): Fix a typo in "command-line-processed".
2002-03-26 Richard M. Stallman <rms@gnu.org>
* fns.c (Fsubstring_no_properties): New function.

View file

@ -2045,7 +2045,7 @@ You must run Emacs in batch mode in order to dump it. */)
/* Bind `command-line-processed' to nil before dumping,
so that the dumped Emacs will process its command line
and set up to work with X windows if appropriate. */
symbol = intern ("command-line-process");
symbol = intern ("command-line-processed");
specbind (symbol, Qnil);
CHECK_STRING (filename);