From e665a469030b0940f6fdc4a0358c8b980830f101 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Wed, 29 Jun 2005 13:50:41 +0000 Subject: [PATCH] (msb-invisible-buffer-p): Change space constants followed by a sexp to "?\s ". --- lisp/msb.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." -- 2.39.2