From: Juanma Barranquero Date: Wed, 29 Jun 2005 13:50:41 +0000 (+0000) Subject: (msb-invisible-buffer-p): Change space constants followed by a sexp to "?\s ". X-Git-Tag: emacs-pretest-22.0.90~8570 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e665a469030b0940f6fdc4a0358c8b980830f101;p=emacs.git (msb-invisible-buffer-p): Change space constants followed by a sexp to "?\s ". --- 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."