Mercurial > emacs
changeset 79068:fb9003c57937
(directory-abbrev-alist): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 13 Oct 2007 14:09:56 +0000 |
parents | 48aadf3819a1 |
children | f38764fb0146 |
files | lisp/files.el |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/files.el Sat Oct 13 14:04:06 2007 +0000 +++ b/lisp/files.el Sat Oct 13 14:09:56 2007 +0000 @@ -59,8 +59,9 @@ 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 @@ (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))