aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2002-03-26 14:41:44 +0000
committerEli Zaretskii2002-03-26 14:41:44 +0000
commit4aaa36072b4e46a6f366d33cc825a41aa2463940 (patch)
treef9ecab839a82d90ce3b02bfd20e28f9dfb27772e
parent40ae145bc2249b7488eb95ebc0e7a045c539e317 (diff)
downloademacs-4aaa36072b4e46a6f366d33cc825a41aa2463940.tar.gz
emacs-4aaa36072b4e46a6f366d33cc825a41aa2463940.zip
(Fdump_emacs): Fix a typo in "command-line-processed".
-rw-r--r--src/ChangeLog4
-rw-r--r--src/emacs.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 9185dfa5ec5..7740e934667 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12002-03-26 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * emacs.c (Fdump_emacs): Fix a typo in "command-line-processed".
4
12002-03-26 Richard M. Stallman <rms@gnu.org> 52002-03-26 Richard M. Stallman <rms@gnu.org>
2 6
3 * fns.c (Fsubstring_no_properties): New function. 7 * fns.c (Fsubstring_no_properties): New function.
diff --git a/src/emacs.c b/src/emacs.c
index b382e87faea..fdd53555309 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -2045,7 +2045,7 @@ You must run Emacs in batch mode in order to dump it. */)
2045 /* Bind `command-line-processed' to nil before dumping, 2045 /* Bind `command-line-processed' to nil before dumping,
2046 so that the dumped Emacs will process its command line 2046 so that the dumped Emacs will process its command line
2047 and set up to work with X windows if appropriate. */ 2047 and set up to work with X windows if appropriate. */
2048 symbol = intern ("command-line-process"); 2048 symbol = intern ("command-line-processed");
2049 specbind (symbol, Qnil); 2049 specbind (symbol, Qnil);
2050 2050
2051 CHECK_STRING (filename); 2051 CHECK_STRING (filename);