Mercurial > emacs
changeset 63850:ebf4306a600f
(msb-invisible-buffer-p): Change space constants followed by a sexp to "?\s ".
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Wed, 29 Jun 2005 13:50:41 +0000 |
parents | 91ca3ff1b216 |
children | 45ed77379ac6 |
files | lisp/msb.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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."