diff options
| author | Eli Zaretskii | 2007-01-09 22:35:34 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2007-01-09 22:35:34 +0000 |
| commit | c7ed32766fc4e20b057f83988a3b837b447c2ad7 (patch) | |
| tree | 72d57e5f82671aadc03438a9f7965d59642b05d2 /src | |
| parent | e992d405a3afee2562f4f326cce44782266d7bc3 (diff) | |
| download | emacs-c7ed32766fc4e20b057f83988a3b837b447c2ad7.tar.gz emacs-c7ed32766fc4e20b057f83988a3b837b447c2ad7.zip | |
(syms_of_emacs) <path-separator>: Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/emacs.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index e0144cbc680..8b9243b2329 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-01-09 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * emacs.c (syms_of_emacs) <path-separator>: Doc fix. | ||
| 4 | |||
| 1 | 2007-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 5 | 2007-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 2 | 6 | ||
| 3 | * callproc.c (Fcall_process_region) [HAVE_MKSTEMP]: Add BLOCK_INPUT | 7 | * callproc.c (Fcall_process_region) [HAVE_MKSTEMP]: Add BLOCK_INPUT |
diff --git a/src/emacs.c b/src/emacs.c index 6ba6d675d62..20997cf4070 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -2480,7 +2480,8 @@ before you compile Emacs, to enable the code for this feature. */); | |||
| 2480 | emacs_priority = 0; | 2480 | emacs_priority = 0; |
| 2481 | 2481 | ||
| 2482 | DEFVAR_LISP ("path-separator", &Vpath_separator, | 2482 | DEFVAR_LISP ("path-separator", &Vpath_separator, |
| 2483 | doc: /* The directory separator in search paths, as a string. */); | 2483 | doc: /* String containing the character that separates directories in |
| 2484 | search paths, such as PATH and other similar environment variables. */); | ||
| 2484 | { | 2485 | { |
| 2485 | char c = SEPCHAR; | 2486 | char c = SEPCHAR; |
| 2486 | Vpath_separator = make_string (&c, 1); | 2487 | Vpath_separator = make_string (&c, 1); |