aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-05-24 02:12:13 +0000
committerJim Blandy1993-05-24 02:12:13 +0000
commit0b9be2e709b2d9bce133f9819ee2266ec8228665 (patch)
tree7cec510ee8695ad0947340468a1d890887fe5661
parent19fac29988dd48e291de46a47c6ec253f9072074 (diff)
downloademacs-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.el6
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)