(syms_of_emacs) <path-separator>: Doc fix.

This commit is contained in:
Eli Zaretskii 2007-01-09 22:35:34 +00:00
parent e992d405a3
commit c7ed32766f
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2007-01-09 Eli Zaretskii <eliz@gnu.org>
* emacs.c (syms_of_emacs) <path-separator>: Doc fix.
2007-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* callproc.c (Fcall_process_region) [HAVE_MKSTEMP]: Add BLOCK_INPUT

View file

@ -2480,7 +2480,8 @@ before you compile Emacs, to enable the code for this feature. */);
emacs_priority = 0;
DEFVAR_LISP ("path-separator", &Vpath_separator,
doc: /* The directory separator in search paths, as a string. */);
doc: /* String containing the character that separates directories in
search paths, such as PATH and other similar environment variables. */);
{
char c = SEPCHAR;
Vpath_separator = make_string (&c, 1);