diff options
| author | Eli Zaretskii | 2005-03-19 14:18:22 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-03-19 14:18:22 +0000 |
| commit | 9dce96b55a36514f8c370a8efdb64fb76a20f104 (patch) | |
| tree | edf049c3831ec51413b4a54d1a0e48e89a6cbbca | |
| parent | 068f123a5fa3e72162b58b954658ba531f940dad (diff) | |
| download | emacs-9dce96b55a36514f8c370a8efdb64fb76a20f104.tar.gz emacs-9dce96b55a36514f8c370a8efdb64fb76a20f104.zip | |
(save-buffer): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/files.el | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fd58d4e59d9..b341d87acdd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2005-03-19 Aaron Hawley <Aaron.Hawley@uvm.edu> (tiny change) | ||
| 2 | |||
| 3 | * files.el (save-buffer): Doc fix. | ||
| 4 | |||
| 1 | 2005-03-19 Michael R. Mauger <mmaug@yahoo.com> | 5 | 2005-03-19 Michael R. Mauger <mmaug@yahoo.com> |
| 2 | 6 | ||
| 3 | * recentf.el (recentf-cleanup-remote): New variable. | 7 | * recentf.el (recentf-cleanup-remote): New variable. |
diff --git a/lisp/files.el b/lisp/files.el index 68a1d52a2df..453a21dda8a 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -3104,14 +3104,14 @@ on a DOS/Windows machine, it returns FILENAME on expanded form." | |||
| 3104 | ancestor)))))) | 3104 | ancestor)))))) |
| 3105 | 3105 | ||
| 3106 | (defun save-buffer (&optional args) | 3106 | (defun save-buffer (&optional args) |
| 3107 | "Save current buffer in visited file if modified. Versions described below. | 3107 | "Save current buffer in visited file if modified. Variations are described below. |
| 3108 | By default, makes the previous version into a backup file | 3108 | By default, makes the previous version into a backup file |
| 3109 | if previously requested or if this is the first save. | 3109 | if previously requested or if this is the first save. |
| 3110 | With 1 \\[universal-argument], marks this version | 3110 | Combined with one \\[universal-argument], marks this version |
| 3111 | to become a backup when the next save is done. | 3111 | to become a backup when the next save is done. |
| 3112 | With 2 \\[universal-argument]'s, | 3112 | Combined with two \\[universal-argument]'s, |
| 3113 | unconditionally makes the previous version into a backup file. | 3113 | unconditionally makes the previous version into a backup file. |
| 3114 | With 3 \\[universal-argument]'s, marks this version | 3114 | Combined with three \\[universal-argument]'s, marks this version |
| 3115 | to become a backup when the next save is done, | 3115 | to become a backup when the next save is done, |
| 3116 | and unconditionally makes the previous version into a backup file. | 3116 | and unconditionally makes the previous version into a backup file. |
| 3117 | 3117 | ||