diff src/emacs.c @ 21622:340ce8f170ef

(Vpath_separator): New variable.
author Geoff Voelker <voelker@cs.washington.edu>
date Fri, 17 Apr 1998 05:25:19 +0000
parents 139e449079a7
children 0bd76a1c9172
line wrap: on
line diff
--- a/src/emacs.c	Fri Apr 17 05:25:04 1998 +0000
+++ b/src/emacs.c	Fri Apr 17 05:25:19 1998 +0000
@@ -85,6 +85,9 @@
 #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 @@
 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;