diff options
| author | Geoff Voelker | 1998-04-17 05:25:19 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1998-04-17 05:25:19 +0000 |
| commit | 074a066b07f454ac79e3bee55d0ca176fea6b323 (patch) | |
| tree | ee9cede371ec642d2bd67aeab8cc4d9a98503dce /src | |
| parent | 4aed037936b450b88d2ecf0003b11a3c9bdd3956 (diff) | |
| download | emacs-074a066b07f454ac79e3bee55d0ca176fea6b323.tar.gz emacs-074a066b07f454ac79e3bee55d0ca176fea6b323.zip | |
(Vpath_separator): New variable.
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs.c | 10 |
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. */ | ||
| 89 | Lisp_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\ | |||
| 1819 | 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\ |
| 1820 | 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\ |
| 1821 | 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 | |||
| 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 | } | ||
| 1822 | before you compile Emacs, to enable the code for this feature."); | 1832 | before you compile Emacs, to enable the code for this feature."); |
| 1823 | emacs_priority = 0; | 1833 | emacs_priority = 0; |
| 1824 | 1834 | ||