aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeoff Voelker1998-04-17 05:25:19 +0000
committerGeoff Voelker1998-04-17 05:25:19 +0000
commit074a066b07f454ac79e3bee55d0ca176fea6b323 (patch)
treeee9cede371ec642d2bd67aeab8cc4d9a98503dce
parent4aed037936b450b88d2ecf0003b11a3c9bdd3956 (diff)
downloademacs-074a066b07f454ac79e3bee55d0ca176fea6b323.tar.gz
emacs-074a066b07f454ac79e3bee55d0ca176fea6b323.zip
(Vpath_separator): New variable.
-rw-r--r--src/emacs.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 8d402f0fb75..f501ec847b8 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -85,6 +85,9 @@ Lisp_Object Vsignal_USR2_hook;
85#endif 85#endif
86#endif 86#endif
87 87
88/* Search path separator. */
89Lisp_Object Vpath_separator;
90
88/* Set nonzero after Emacs has started up the first time. 91/* Set nonzero after Emacs has started up the first time.
89 Prevents reinitialization of the Lisp world and keymaps 92 Prevents reinitialization of the Lisp world and keymaps
90 on subsequent starts. */ 93 on subsequent starts. */
@@ -1819,6 +1822,13 @@ This value is effective only if set before Emacs is dumped,\n\
1819and 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\
1820it 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\
1821Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\ 1824Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\
1825
1826 DEFVAR_LISP ("path-separator", &Vpath_separator,
1827 "The directory separator in search paths, as a string.");
1828 {
1829 char c = SEPCHAR;
1830 Vpath_separator = make_string (&c, 1);
1831 }
1822before you compile Emacs, to enable the code for this feature."); 1832before you compile Emacs, to enable the code for this feature.");
1823 emacs_priority = 0; 1833 emacs_priority = 0;
1824 1834