diff options
| author | Jim Blandy | 1993-05-24 02:12:13 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-05-24 02:12:13 +0000 |
| commit | 0b9be2e709b2d9bce133f9819ee2266ec8228665 (patch) | |
| tree | 7cec510ee8695ad0947340468a1d890887fe5661 | |
| parent | 19fac29988dd48e291de46a47c6ec253f9072074 (diff) | |
| download | emacs-0b9be2e709b2d9bce133f9819ee2266ec8228665.tar.gz emacs-0b9be2e709b2d9bce133f9819ee2266ec8228665.zip | |
* lucid.el (switch-to-other-buffer): Build the list of acceptable
buffers properly.
| -rw-r--r-- | lisp/emacs-lisp/lucid.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/lucid.el b/lisp/emacs-lisp/lucid.el index 35404b967e6..7a8ff4789ba 100644 --- a/lisp/emacs-lisp/lucid.el +++ b/lisp/emacs-lisp/lucid.el | |||
| @@ -121,10 +121,10 @@ bottom of the buffer stack." | |||
| 121 | (apply 'nconc | 121 | (apply 'nconc |
| 122 | (mapcar | 122 | (mapcar |
| 123 | (lambda (buf) | 123 | (lambda (buf) |
| 124 | (if (= (string-to-char (buffer-name (car (cdr tail)))) | 124 | (if (= ?\ (string-to-char (buffer-name buf))) |
| 125 | ?\ ) | ||
| 126 | nil | 125 | nil |
| 127 | (list buf))))))))) | 126 | (list buf))) |
| 127 | (buffer-list))))))) | ||
| 128 | 128 | ||
| 129 | (defalias 'find-face 'internal-find-face) | 129 | (defalias 'find-face 'internal-find-face) |
| 130 | (defalias 'get-face 'internal-get-face) | 130 | (defalias 'get-face 'internal-get-face) |