summaryrefslogtreecommitdiff
path: root/lisp/menu-bar.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2006-11-27 13:59:39 +0000
committerJuanma Barranquero <lekktu@gmail.com>2006-11-27 13:59:39 +0000
commit15e917e4f3a9dfefe4f4b44493b76c51afc1dcaf (patch)
tree15961ef300567bb89a473f4dc77d167cbbc7854e /lisp/menu-bar.el
parent0c655b900b58b44215e735d3f8216ce17be4fd73 (diff)
downloademacs-15e917e4f3a9dfefe4f4b44493b76c51afc1dcaf.tar.gz
(menu-bar-update-buffers): "?\ " -> "?\s".
Diffstat (limited to 'lisp/menu-bar.el')
-rw-r--r--lisp/menu-bar.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index 0aa047cd9ef..2cacce96adc 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -1596,14 +1596,14 @@ Buffers menu is regenerated."
name))))
;; Compute the maximum length of any name.
(dolist (buf buffer-list)
- (unless (eq ?\ (aref (cdr buf) 0))
+ (unless (eq ?\s (aref (cdr buf) 0))
(setq menu-bar-update-buffers-maxbuf
(max menu-bar-update-buffers-maxbuf
(length (cdr buf))))))
;; Set ALIST to an alist of the form
;; ITEM-STRING . BUFFER
(dolist (buf buffer-list)
- (unless (eq ?\ (aref (cdr buf) 0))
+ (unless (eq ?\s (aref (cdr buf) 0))
(push (menu-bar-update-buffers-1 buf) alist)))
;; Now make the actual list of items, and add
;; some miscellaneous buffer commands to the end.