]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_emacs) <path-separator>: Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Tue, 9 Jan 2007 22:35:34 +0000 (22:35 +0000)
committerEli Zaretskii <eliz@gnu.org>
Tue, 9 Jan 2007 22:35:34 +0000 (22:35 +0000)
src/ChangeLog
src/emacs.c

index e0144cbc6804b1afa365bb2343d5167bfea14771..8b9243b23299ce19db93fc8b3b54ef5625018996 100644 (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
index 6ba6d675d62145685d1a1a4f78683bf17a083485..20997cf4070d74fd98cdc439d272f6e80a1881e9 100644 (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);