aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-04-17 23:58:44 +0000
committerRichard M. Stallman1998-04-17 23:58:44 +0000
commite7a9e1c3d4e6e00fd6ffa3bc775eaaeb28efeb83 (patch)
tree9f94ed49546eb942b4492748b422a8f7e7ff32eb
parent3c32996351d062b891c7cfbfe6a7ce5c63bd2fc8 (diff)
downloademacs-e7a9e1c3d4e6e00fd6ffa3bc775eaaeb28efeb83.tar.gz
emacs-e7a9e1c3d4e6e00fd6ffa3bc775eaaeb28efeb83.zip
(syms_of_emacs): Fix patching error in previous change.
-rw-r--r--src/emacs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emacs.c b/src/emacs.c
index f501ec847b8..ee38b192a1e 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1822,6 +1822,8 @@ This value is effective only if set before Emacs is dumped,\n\
1822and only if the Emacs executable is installed with setuid to permit\n\ 1822and only if the Emacs executable is installed with setuid to permit\n\
1823it to change priority. (Emacs sets its uid back to the real uid.)\n\ 1823it to change priority. (Emacs sets its uid back to the real uid.)\n\
1824Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\ 1824Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\
1825before you compile Emacs, to enable the code for this feature.");
1826 emacs_priority = 0;
1825 1827
1826 DEFVAR_LISP ("path-separator", &Vpath_separator, 1828 DEFVAR_LISP ("path-separator", &Vpath_separator,
1827 "The directory separator in search paths, as a string."); 1829 "The directory separator in search paths, as a string.");
@@ -1829,8 +1831,6 @@ Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\
1829 char c = SEPCHAR; 1831 char c = SEPCHAR;
1830 Vpath_separator = make_string (&c, 1); 1832 Vpath_separator = make_string (&c, 1);
1831 } 1833 }
1832before you compile Emacs, to enable the code for this feature.");
1833 emacs_priority = 0;
1834 1834
1835 DEFVAR_LISP ("invocation-name", &Vinvocation_name, 1835 DEFVAR_LISP ("invocation-name", &Vinvocation_name,
1836 "The program name that was used to run Emacs.\n\ 1836 "The program name that was used to run Emacs.\n\