summaryrefslogtreecommitdiff
path: root/lisp/msb.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2005-06-29 13:50:41 +0000
committerJuanma Barranquero <lekktu@gmail.com>2005-06-29 13:50:41 +0000
commit6dc324e7d38d9160724734b08cffcccff1d94987 (patch)
tree2861726fc2b2f5810ba0d55723eea38ad785bf57 /lisp/msb.el
parent32b1095e5ad6d520e0bc1bbe9e768a487cbde293 (diff)
downloademacs-6dc324e7d38d9160724734b08cffcccff1d94987.tar.gz
(msb-invisible-buffer-p): Change space constants followed by a sexp to "?\s ".
Diffstat (limited to 'lisp/msb.el')
-rw-r--r--lisp/msb.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/msb.el b/lisp/msb.el
index 0bcdad314a6..02ab487bc69 100644
--- a/lisp/msb.el
+++ b/lisp/msb.el
@@ -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."