diff options
| author | Juanma Barranquero | 2005-06-29 13:50:41 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-06-29 13:50:41 +0000 |
| commit | e665a469030b0940f6fdc4a0358c8b980830f101 (patch) | |
| tree | f296ec5eba7846e4b7d6a5eeaa635147c88209ed | |
| parent | fc2b429ee984f98c6cc841966ec5012fb2cde53f (diff) | |
| download | emacs-e665a469030b0940f6fdc4a0358c8b980830f101.tar.gz emacs-e665a469030b0940f6fdc4a0358c8b980830f101.zip | |
(msb-invisible-buffer-p): Change space constants followed by a sexp to "?\s ".
| -rw-r--r-- | lisp/msb.el | 2 |
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. |
| 490 | If the argument is left out or nil, then the current buffer is considered." | 490 | If 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." |