]> git.eshelyaron.com Git - emacs.git/commitdiff
(directory-abbrev-alist): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Sat, 13 Oct 2007 14:10:21 +0000 (14:10 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 13 Oct 2007 14:10:21 +0000 (14:10 +0000)
lisp/ChangeLog
lisp/files.el

index 25880580103829bfe977b86984776ef4c7fd012f..7539d1c2c1607c0b0bbd2a4e6550f68f6f9af2c4 100644 (file)
@@ -1,3 +1,7 @@
+2007-10-13  Richard Stallman  <rms@gnu.org>
+
+       * files.el (directory-abbrev-alist): Doc fix.
+
 2007-10-13  Jari Aalto  <jari.aalto@cante.net>
 
        * comint.el (comint-password-prompt-regexp): Add 'LDAP'.
index 054f0e7d3a0412bd847f75aba90a6ce3bca6d554..9ae4396946b02f588fa88c3ed7c4da9b30ed07c0 100644 (file)
@@ -59,8 +59,9 @@ FROM with TO when it appears in a directory name.  This replacement is
 done when setting up the default directory of a newly visited file.
 *Every* FROM string should start with `^'.
 
-Do not use `~' in the TO strings.
-They should be ordinary absolute directory names.
+FROM and TO should be equivalent names, which refer to the
+same directory.  Do not use `~' in the TO strings;
+they should be ordinary absolute directory names.
 
 Use this feature when you have directories which you normally refer to
 via absolute symbolic links.  Make TO the name of the link, and FROM
@@ -554,7 +555,7 @@ See Info node `(elisp)Standard File Names' for more details."
            (start 0))
        ;; Replace invalid filename characters with !
        (while (string-match "[?*:<>|\"\000-\037]" name start)
-         (aset name (match-beginning 0) ?!)
+              (aset name (match-beginning 0) ?!)
          (setq start (match-end 0)))
        name)
     filename))