diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2004-04-01 01:23:36 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2004-04-01 01:23:36 +0000 |
commit | 012ad4a3f8f4d21dd87f8700bb01ad98afa85a60 (patch) | |
tree | 7a455c16841077f24ceae8aa45a5e2ff18d3696f /lisp | |
parent | 8b0b6932867551ab84b7acc0173856fa2cc105c9 (diff) | |
download | emacs-012ad4a3f8f4d21dd87f8700bb01ad98afa85a60.tar.gz |
(Buffer-menu-mode): Make the buffer-stale-function return `fast'.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/buff-menu.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/buff-menu.el b/lisp/buff-menu.el index a1b0f4093c7..da1c8ed586e 100644 --- a/lisp/buff-menu.el +++ b/lisp/buff-menu.el @@ -185,7 +185,7 @@ 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) t)) + #'(lambda (&optional noconfirm) 'fast)) (setq truncate-lines t) (setq buffer-read-only t) (run-hooks 'buffer-menu-mode-hook)) |