aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-06-29 13:50:02 +0000
committerJuanma Barranquero2005-06-29 13:50:02 +0000
commitfc2b429ee984f98c6cc841966ec5012fb2cde53f (patch)
tree9e7e5d106b7999b33454121876b8ea0b69377a08
parentebf944d7ac06157a489f6a00567a762ec0934c93 (diff)
downloademacs-fc2b429ee984f98c6cc841966ec5012fb2cde53f.tar.gz
emacs-fc2b429ee984f98c6cc841966ec5012fb2cde53f.zip
(mouse-buffer-menu-alist): Change space constants followed by a sexp to "?\s ".
-rw-r--r--lisp/mouse.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el
index 07e593a70c1..03740e780d5 100644
--- a/lisp/mouse.el
+++ b/lisp/mouse.el
@@ -1857,7 +1857,7 @@ and selects that window."
1857 (string< (buffer-name elt1) (buffer-name elt2)))))) 1857 (string< (buffer-name elt1) (buffer-name elt2))))))
1858 (setq tail buffers) 1858 (setq tail buffers)
1859 (while tail 1859 (while tail
1860 (or (eq ?\ (aref (buffer-name (car tail)) 0)) 1860 (or (eq ?\s (aref (buffer-name (car tail)) 0))
1861 (setq maxlen 1861 (setq maxlen
1862 (max maxlen 1862 (max maxlen
1863 (length (buffer-name (car tail)))))) 1863 (length (buffer-name (car tail))))))