diff options
| author | Richard M. Stallman | 1992-10-21 04:52:59 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-10-21 04:52:59 +0000 |
| commit | 29165787801df3e65663dec2b21727359736dabe (patch) | |
| tree | 24fec50aa207590efe29ea0a400e8069db594a33 | |
| parent | 804172fafc60be1da24001f9a8e72c02cee9d0ed (diff) | |
| download | emacs-29165787801df3e65663dec2b21727359736dabe.tar.gz emacs-29165787801df3e65663dec2b21727359736dabe.zip | |
Doc fixes.
| -rw-r--r-- | lisp/files.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/files.el b/lisp/files.el index 2d3d038725a..b5ba9a55ef4 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -402,16 +402,16 @@ otherwise a string <2> or <3> or ... is appended to get an unused name." | |||
| 402 | 402 | ||
| 403 | (defun generate-new-buffer (name) | 403 | (defun generate-new-buffer (name) |
| 404 | "Create and return a buffer with a name based on NAME. | 404 | "Create and return a buffer with a name based on NAME. |
| 405 | Choose the buffer's name using generate-new-buffer-name." | 405 | Choose the buffer's name using `generate-new-buffer-name'." |
| 406 | (get-buffer-create (generate-new-buffer-name name))) | 406 | (get-buffer-create (generate-new-buffer-name name))) |
| 407 | 407 | ||
| 408 | (defconst automount-dir-prefix "^/tmp_mnt/" | 408 | (defconst automount-dir-prefix "^/tmp_mnt/" |
| 409 | "Regexp to match the automounter prefix in a directory name.") | 409 | "Regexp to match the automounter prefix in a directory name.") |
| 410 | 410 | ||
| 411 | (defun abbreviate-file-name (filename) | 411 | (defun abbreviate-file-name (filename) |
| 412 | "Return a version of FILENAME shortened using directory-abbrev-alist. | 412 | "Return a version of FILENAME shortened using `directory-abbrev-alist'. |
| 413 | This also substitutes \"~\" for the user's home directory. | 413 | This also substitutes \"~\" for the user's home directory. |
| 414 | See \\[describe-variable] directory-abbrev-alist RET for more information." | 414 | Type \\[describe-variable] directory-abbrev-alist RET for more information." |
| 415 | ;; Get rid of the prefixes added by the automounter. | 415 | ;; Get rid of the prefixes added by the automounter. |
| 416 | (if (and (string-match automount-dir-prefix filename) | 416 | (if (and (string-match automount-dir-prefix filename) |
| 417 | (file-exists-p (file-name-directory | 417 | (file-exists-p (file-name-directory |