comparison src/emacs.c @ 21637:0bd76a1c9172

(syms_of_emacs): Fix patching error in previous change.
author Richard M. Stallman <rms@gnu.org>
date Fri, 17 Apr 1998 23:58:44 +0000
parents 340ce8f170ef
children 5b26268ee997
comparison
equal deleted inserted replaced
21636:10d8ced94467 21637:0bd76a1c9172
1820 "Priority for Emacs to run at.\n\ 1820 "Priority for Emacs to run at.\n\
1821 This value is effective only if set before Emacs is dumped,\n\ 1821 This value is effective only if set before Emacs is dumped,\n\
1822 and only if the Emacs executable is installed with setuid to permit\n\ 1822 and only if the Emacs executable is installed with setuid to permit\n\
1823 it to change priority. (Emacs sets its uid back to the real uid.)\n\ 1823 it to change priority. (Emacs sets its uid back to the real uid.)\n\
1824 Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\ 1824 Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\
1825 before 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.");
1828 { 1830 {
1829 char c = SEPCHAR; 1831 char c = SEPCHAR;
1830 Vpath_separator = make_string (&c, 1); 1832 Vpath_separator = make_string (&c, 1);
1831 } 1833 }
1832 before 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\
1837 Any directory names are omitted."); 1837 Any directory names are omitted.");
1838 1838