diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-04-19 15:44:55 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-04-19 15:44:55 +0200 |
commit | 06b605171f1c9d8b42bd3326a243b8b03d2e4e58 (patch) | |
tree | e96c135042999136bf0e75d113aae306e51983e3 /lisp/buff-menu.el | |
parent | 04c569546ad52f6270d8fc6d4aa0750950a0ac05 (diff) |
lisp/*.el: Lexical-binding cleanup.
Diffstat (limited to 'lisp/buff-menu.el')
-rw-r--r-- | lisp/buff-menu.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/buff-menu.el b/lisp/buff-menu.el index 1e92c08475..70befa11d8 100644 --- a/lisp/buff-menu.el +++ b/lisp/buff-menu.el @@ -264,14 +264,14 @@ Letters do not insert themselves; instead, they are commands. (set (make-local-variable 'revert-buffer-function) 'Buffer-menu-revert-function) (set (make-local-variable 'buffer-stale-function) - #'(lambda (&optional noconfirm) 'fast)) + (lambda (&optional _noconfirm) 'fast)) (setq truncate-lines t) (setq buffer-read-only t)) (define-obsolete-variable-alias 'buffer-menu-mode-hook 'Buffer-menu-mode-hook "23.1") -(defun Buffer-menu-revert-function (ignore1 ignore2) +(defun Buffer-menu-revert-function (_ignore1 _ignore2) (or (eq buffer-undo-list t) (setq buffer-undo-list nil)) ;; We can not use save-excursion here. The buffer gets erased. |