# HG changeset patch # User Juanma Barranquero # Date 1120053041 0 # Node ID ebf4306a600f9eb8cd6782e05d0217325c47808a # Parent 91ca3ff1b2166178a12defd72a30bc098592c45d (msb-invisible-buffer-p): Change space constants followed by a sexp to "?\s ". diff -r 91ca3ff1b216 -r ebf4306a600f lisp/msb.el --- a/lisp/msb.el Wed Jun 29 13:50:02 2005 +0000 +++ b/lisp/msb.el Wed Jun 29 13:50:41 2005 +0000 @@ -489,7 +489,7 @@ "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."