From: Juanma Barranquero Date: Wed, 29 Jun 2005 13:50:02 +0000 (+0000) Subject: (mouse-buffer-menu-alist): Change space constants followed by a sexp to "?\s ". X-Git-Tag: emacs-pretest-22.0.90~8571 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fc2b429ee984f98c6cc841966ec5012fb2cde53f;p=emacs.git (mouse-buffer-menu-alist): Change space constants followed by a sexp to "?\s ". --- 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." (string< (buffer-name elt1) (buffer-name elt2)))))) (setq tail buffers) (while tail - (or (eq ?\ (aref (buffer-name (car tail)) 0)) + (or (eq ?\s (aref (buffer-name (car tail)) 0)) (setq maxlen (max maxlen (length (buffer-name (car tail))))))