aboutsummaryrefslogtreecommitdiffstats
path: root/src/emacs.c
diff options
context:
space:
mode:
authorGeoff Voelker <[email protected]>1998-04-17 05:25:19 +0000
committerGeoff Voelker <[email protected]>1998-04-17 05:25:19 +0000
commit074a066b07f454ac79e3bee55d0ca176fea6b323 (patch)
treeee9cede371ec642d2bd67aeab8cc4d9a98503dce /src/emacs.c
parent4aed037936b450b88d2ecf0003b11a3c9bdd3956 (diff)
(Vpath_separator): New variable.
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 8d402f0fb7..f501ec847b 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -85,6 +85,9 @@ Lisp_Object Vsignal_USR2_hook;
#endif
#endif
+/* Search path separator. */
+Lisp_Object Vpath_separator;
+
/* Set nonzero after Emacs has started up the first time.
Prevents reinitialization of the Lisp world and keymaps
on subsequent starts. */
@@ -1819,6 +1822,13 @@ 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\
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\
+
+ DEFVAR_LISP ("path-separator", &Vpath_separator,
+ "The directory separator in search paths, as a string.");
+ {
+ char c = SEPCHAR;
+ Vpath_separator = make_string (&c, 1);
+ }
before you compile Emacs, to enable the code for this feature.");
emacs_priority = 0;