diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-03-16 23:28:27 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-03-16 23:28:27 +0000 |
commit | 66657f2792360581daa4641ab88e836359be78b7 (patch) | |
tree | c6e591c93e38da4465416836565d6bda111e282b /lisp/vms-patch.el | |
parent | 5438ecd32e4af020875e7068351f5225b72142d9 (diff) | |
download | emacs-66657f2792360581daa4641ab88e836359be78b7.tar.gz |
(make-auto-save-file-name, auto-save-file-name-p): Doc fixes.
Diffstat (limited to 'lisp/vms-patch.el')
-rw-r--r-- | lisp/vms-patch.el | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lisp/vms-patch.el b/lisp/vms-patch.el index 93edaa86808..18cc9f823c5 100644 --- a/lisp/vms-patch.el +++ b/lisp/vms-patch.el @@ -54,10 +54,11 @@ otherwise a string <2> or <3> or ... is appended to get an unused name." (defun make-auto-save-file-name () "Return file name to use for auto-saves of current buffer. -Does not consider auto-save-visited-file-name; that is checked -before calling this function. -This is a separate function so your .emacs file or site-init.el can redefine it. -See also auto-save-file-name-p." +This function does not consider `auto-save-visited-file-name'; +the caller should check that before calling this function. +This is a separate function so that your `.emacs' file or the site's +`site-init.el' can redefine it. +See also `auto-save-file-name-p'." (if buffer-file-name (concat (file-name-directory buffer-file-name) "_$" @@ -66,9 +67,10 @@ See also auto-save-file-name-p." (expand-file-name (concat "_$_" (make-legal-file-name (buffer-name)) "$")))) (defun auto-save-file-name-p (filename) - "Return t if FILENAME can be yielded by make-auto-save-file-name. + "Return t if FILENAME can be yielded by `make-auto-save-file-name'. FILENAME should lack slashes. -This is a separate function so your .emacs file or site-init.el can redefine it." +This is a separate function so that your `.emacs' file or the site's +`site-init.el' can redefine it." (string-match "^_\\$.*\\$" filename)) ;;; |