diff options
| author | Karl Heuer | 1995-02-28 06:24:08 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-02-28 06:24:08 +0000 |
| commit | e0867e9965371a73981b76fd036e6f5b93ebf78c (patch) | |
| tree | 3d9c550fa944a25af3fff3ec632a30de72e6e5de | |
| parent | 887e0cbab7170d0ca51d5c4425e1d925ba545291 (diff) | |
| download | emacs-e0867e9965371a73981b76fd036e6f5b93ebf78c.tar.gz emacs-e0867e9965371a73981b76fd036e6f5b93ebf78c.zip | |
(revert-buffer): Use current-prefix-arg, not prefix-arg.
| -rw-r--r-- | lisp/files.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el index 369e40fb84d..cf6f0213706 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -1933,7 +1933,7 @@ beginning and `after-revert-hook' at the end." | |||
| 1933 | ;; there's no straightforward way to encourage authors to notice a | 1933 | ;; there's no straightforward way to encourage authors to notice a |
| 1934 | ;; reversal of the argument sense. So I'm just changing the user | 1934 | ;; reversal of the argument sense. So I'm just changing the user |
| 1935 | ;; interface, but leaving the programmatic interface the same. | 1935 | ;; interface, but leaving the programmatic interface the same. |
| 1936 | (interactive (list (not prefix-arg))) | 1936 | (interactive (list (not current-prefix-arg))) |
| 1937 | (if revert-buffer-function | 1937 | (if revert-buffer-function |
| 1938 | (funcall revert-buffer-function ignore-auto noconfirm) | 1938 | (funcall revert-buffer-function ignore-auto noconfirm) |
| 1939 | (let* ((opoint (point)) | 1939 | (let* ((opoint (point)) |