From: Eli Zaretskii Date: Tue, 26 Mar 2002 14:41:44 +0000 (+0000) Subject: (Fdump_emacs): Fix a typo in "command-line-processed". X-Git-Tag: ttn-vms-21-2-B4~15965 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4aaa36072b4e46a6f366d33cc825a41aa2463940;p=emacs.git (Fdump_emacs): Fix a typo in "command-line-processed". --- diff --git a/src/ChangeLog b/src/ChangeLog index 9185dfa5ec5..7740e934667 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2002-03-26 Eli Zaretskii + + * emacs.c (Fdump_emacs): Fix a typo in "command-line-processed". + 2002-03-26 Richard M. Stallman * 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. */) /* 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);