diff options
| author | Richard M. Stallman | 2007-10-13 14:10:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-10-13 14:10:21 +0000 |
| commit | 4b690a83340d0cd2efb6e93aff13349ffc545580 (patch) | |
| tree | d8309649f890e58d9e35abc61701dcc18f39d14f | |
| parent | 4148f522b8f2f1aca27b92da6391a0d925207228 (diff) | |
| download | emacs-4b690a83340d0cd2efb6e93aff13349ffc545580.tar.gz emacs-4b690a83340d0cd2efb6e93aff13349ffc545580.zip | |
(directory-abbrev-alist): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/files.el | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 25880580103..7539d1c2c16 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-10-13 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * files.el (directory-abbrev-alist): Doc fix. | ||
| 4 | |||
| 1 | 2007-10-13 Jari Aalto <jari.aalto@cante.net> | 5 | 2007-10-13 Jari Aalto <jari.aalto@cante.net> |
| 2 | 6 | ||
| 3 | * comint.el (comint-password-prompt-regexp): Add 'LDAP'. | 7 | * comint.el (comint-password-prompt-regexp): Add 'LDAP'. |
diff --git a/lisp/files.el b/lisp/files.el index 054f0e7d3a0..9ae4396946b 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -59,8 +59,9 @@ FROM with TO when it appears in a directory name. This replacement is | |||
| 59 | done when setting up the default directory of a newly visited file. | 59 | done when setting up the default directory of a newly visited file. |
| 60 | *Every* FROM string should start with `^'. | 60 | *Every* FROM string should start with `^'. |
| 61 | 61 | ||
| 62 | Do not use `~' in the TO strings. | 62 | FROM and TO should be equivalent names, which refer to the |
| 63 | They should be ordinary absolute directory names. | 63 | same directory. Do not use `~' in the TO strings; |
| 64 | they should be ordinary absolute directory names. | ||
| 64 | 65 | ||
| 65 | Use this feature when you have directories which you normally refer to | 66 | Use this feature when you have directories which you normally refer to |
| 66 | via absolute symbolic links. Make TO the name of the link, and FROM | 67 | 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." | |||
| 554 | (start 0)) | 555 | (start 0)) |
| 555 | ;; Replace invalid filename characters with ! | 556 | ;; Replace invalid filename characters with ! |
| 556 | (while (string-match "[?*:<>|\"\000-\037]" name start) | 557 | (while (string-match "[?*:<>|\"\000-\037]" name start) |
| 557 | (aset name (match-beginning 0) ?!) | 558 | (aset name (match-beginning 0) ?!) |
| 558 | (setq start (match-end 0))) | 559 | (setq start (match-end 0))) |
| 559 | name) | 560 | name) |
| 560 | filename)) | 561 | filename)) |