aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-06-29 13:50:41 +0000
committerJuanma Barranquero2005-06-29 13:50:41 +0000
commite665a469030b0940f6fdc4a0358c8b980830f101 (patch)
treef296ec5eba7846e4b7d6a5eeaa635147c88209ed
parentfc2b429ee984f98c6cc841966ec5012fb2cde53f (diff)
downloademacs-e665a469030b0940f6fdc4a0358c8b980830f101.tar.gz
emacs-e665a469030b0940f6fdc4a0358c8b980830f101.zip
(msb-invisible-buffer-p): Change space constants followed by a sexp to "?\s ".
-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
489 "Return t if optional BUFFER is an \"invisible\" buffer. 489 "Return t if optional BUFFER is an \"invisible\" buffer.
490If the argument is left out or nil, then the current buffer is considered." 490If the argument is left out or nil, then the current buffer is considered."
491 (and (> (length (buffer-name buffer)) 0) 491 (and (> (length (buffer-name buffer)) 0)
492 (eq ?\ (aref (buffer-name buffer) 0)))) 492 (eq ?\s (aref (buffer-name buffer) 0))))
493 493
494(defun msb--strip-dir (dir) 494(defun msb--strip-dir (dir)
495 "Strip one hierarchy level from the end of DIR." 495 "Strip one hierarchy level from the end of DIR."