# HG changeset patch # User Geoff Voelker # Date 892790719 0 # Node ID 340ce8f170efab8c154117d367821c8d366642d0 # Parent 56d8224fe69130fdfec6d9c1cc49c847a3f0cdb5 (Vpath_separator): New variable. diff -r 56d8224fe691 -r 340ce8f170ef src/emacs.c --- 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;