# HG changeset patch # User Richard M. Stallman # Date 1192284596 0 # Node ID fb9003c57937773b665746af427c69b34a810b52 # Parent 48aadf3819a119111e979f1aab5f05a505ecad62 (directory-abbrev-alist): Doc fix. diff -r 48aadf3819a1 -r fb9003c57937 lisp/files.el --- 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))