diff options
| author | Vinicius Jose Latorre | 2007-12-12 11:25:21 +0000 |
|---|---|---|
| committer | Vinicius Jose Latorre | 2007-12-12 11:25:21 +0000 |
| commit | 0dff8975207307e73ba16f6306ab41016461dc57 (patch) | |
| tree | 007ff29850088719012302bb1cb95f245ae7b63e | |
| parent | 045744c697ed42220ad34e9219604f3474e40dc3 (diff) | |
| download | emacs-0dff8975207307e73ba16f6306ab41016461dc57.tar.gz emacs-0dff8975207307e73ba16f6306ab41016461dc57.zip | |
revert-buffer docstring fix
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/files.el | 10 |
2 files changed, 10 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 59b0854751b..fffb1e03f60 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-12-12 Yoni Rabkin Katzenell <yoni-r@actcom.com> (tiny change) | ||
| 2 | |||
| 3 | * files.el (revert-buffer): Docstring fix. | ||
| 4 | |||
| 1 | 2007-12-11 Glenn Morris <rgm@gnu.org> | 5 | 2007-12-11 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * emacs-lisp/check-declare.el (check-declare-verify): Handle deffoo. | 7 | * emacs-lisp/check-declare.el (check-declare-verify): Handle deffoo. |
diff --git a/lisp/files.el b/lisp/files.el index 8d5fcfda8c2..110dbef9289 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -4204,10 +4204,12 @@ This undoes all changes since the file was visited or saved. | |||
| 4204 | With a prefix argument, offer to revert from latest auto-save file, if | 4204 | With a prefix argument, offer to revert from latest auto-save file, if |
| 4205 | that is more recent than the visited file. | 4205 | that is more recent than the visited file. |
| 4206 | 4206 | ||
| 4207 | This command also works for special buffers that contain text which | 4207 | This command also implements an interface for special buffers |
| 4208 | doesn't come from a file, but reflects some other data base instead: | 4208 | that contain text which doesn't come from a file, but reflects |
| 4209 | for example, Dired buffers and `buffer-list' buffers. In these cases, | 4209 | some other data instead (e.g. Dired buffers, `buffer-list' |
| 4210 | it reconstructs the buffer contents from the appropriate data base. | 4210 | buffers). This is done via the variable |
| 4211 | `revert-buffer-function'. In these cases, it should reconstruct | ||
| 4212 | the buffer contents from the appropriate data. | ||
| 4211 | 4213 | ||
| 4212 | When called from Lisp, the first argument is IGNORE-AUTO; only offer | 4214 | When called from Lisp, the first argument is IGNORE-AUTO; only offer |
| 4213 | to revert from the auto-save file when this is nil. Note that the | 4215 | to revert from the auto-save file when this is nil. Note that the |