(msb-invisible-buffer-p): Change space constants followed by a sexp to "?\s ".

This commit is contained in:
Juanma Barranquero 2005-06-29 13:50:41 +00:00
parent fc2b429ee9
commit e665a46903

View 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."