diff options
| author | Karl Heuer <kwzh@gnu.org> | 1995-02-28 06:24:08 +0000 |
|---|---|---|
| committer | Karl Heuer <kwzh@gnu.org> | 1995-02-28 06:24:08 +0000 |
| commit | e0867e9965371a73981b76fd036e6f5b93ebf78c (patch) | |
| tree | 3d9c550fa944a25af3fff3ec632a30de72e6e5de /lisp | |
| parent | 887e0cbab7170d0ca51d5c4425e1d925ba545291 (diff) | |
| download | emacs-e0867e9965371a73981b76fd036e6f5b93ebf78c.tar.gz | |
(revert-buffer): Use current-prefix-arg, not prefix-arg.
Diffstat (limited to 'lisp')
| -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." ;; there's no straightforward way to encourage authors to notice a ;; reversal of the argument sense. So I'm just changing the user ;; interface, but leaving the programmatic interface the same. - (interactive (list (not prefix-arg))) + (interactive (list (not current-prefix-arg))) (if revert-buffer-function (funcall revert-buffer-function ignore-auto noconfirm) (let* ((opoint (point)) |
