From: Karl Heuer Date: Tue, 28 Feb 1995 06:24:08 +0000 (+0000) Subject: (revert-buffer): Use current-prefix-arg, not prefix-arg. X-Git-Tag: emacs-19.34~5011 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e0867e9965371a73981b76fd036e6f5b93ebf78c;p=emacs.git (revert-buffer): Use current-prefix-arg, not prefix-arg. --- 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))