(syms_of_emacs): Fix patching error in previous change.
This commit is contained in:
parent
3c32996351
commit
e7a9e1c3d4
1 changed files with 2 additions and 2 deletions
|
@ -1822,6 +1822,8 @@ This value is effective only if set before Emacs is dumped,\n\
|
||||||
and only if the Emacs executable is installed with setuid to permit\n\
|
and only if the Emacs executable is installed with setuid to permit\n\
|
||||||
it to change priority. (Emacs sets its uid back to the real uid.)\n\
|
it to change priority. (Emacs sets its uid back to the real uid.)\n\
|
||||||
Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\
|
Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\
|
||||||
|
before you compile Emacs, to enable the code for this feature.");
|
||||||
|
emacs_priority = 0;
|
||||||
|
|
||||||
DEFVAR_LISP ("path-separator", &Vpath_separator,
|
DEFVAR_LISP ("path-separator", &Vpath_separator,
|
||||||
"The directory separator in search paths, as a string.");
|
"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\
|
||||||
char c = SEPCHAR;
|
char c = SEPCHAR;
|
||||||
Vpath_separator = make_string (&c, 1);
|
Vpath_separator = make_string (&c, 1);
|
||||||
}
|
}
|
||||||
before you compile Emacs, to enable the code for this feature.");
|
|
||||||
emacs_priority = 0;
|
|
||||||
|
|
||||||
DEFVAR_LISP ("invocation-name", &Vinvocation_name,
|
DEFVAR_LISP ("invocation-name", &Vinvocation_name,
|
||||||
"The program name that was used to run Emacs.\n\
|
"The program name that was used to run Emacs.\n\
|
||||||
|
|
Loading…
Add table
Reference in a new issue