]> git.eshelyaron.com Git - emacs.git/commitdiff
(msb-invisible-buffer-p): Change space constants followed by a sexp to "?\s ".
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 29 Jun 2005 13:50:41 +0000 (13:50 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 29 Jun 2005 13:50:41 +0000 (13:50 +0000)
lisp/msb.el

index 0bcdad314a611e5bcfae2a631b322e582df50547..02ab487bc694cf9b5727860ccf2a543d9490f962 100644 (file)
@@ -489,7 +489,7 @@ See the function `mouse-select-buffer' and the variable
   "Return t if optional BUFFER is an \"invisible\" buffer.
 If the argument is left out or nil, then the current buffer is considered."
   (and (> (length (buffer-name buffer)) 0)
-       (eq ?\ (aref (buffer-name buffer) 0))))
+       (eq ?\s (aref (buffer-name buffer) 0))))
 
 (defun msb--strip-dir (dir)
   "Strip one hierarchy level from the end of DIR."