summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/lucid.el
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-05-03 03:37:47 +0000
committerJim Blandy <jimb@redhat.com>1993-05-03 03:37:47 +0000
commite084483dea79fba5c10662c953579f8aee4e1953 (patch)
tree4b878657fcc058999657a8d046e7b10880a9db5b /lisp/emacs-lisp/lucid.el
parent28dbf5014a585f1e41800fdfda4eed11dd0a39ea (diff)
downloademacs-e084483dea79fba5c10662c953579f8aee4e1953.tar.gz
emacs-e084483dea79fba5c10662c953579f8aee4e1953.tar.bz2
emacs-e084483dea79fba5c10662c953579f8aee4e1953.zip
* lucid.el: Comment out fset of set-screen-width properly.
* lucid.el: (provide 'lucid). * lucid.el: (switch-to-other-buffer): Avoid buffers whose names start with a space.
Diffstat (limited to 'lisp/emacs-lisp/lucid.el')
-rw-r--r--lisp/emacs-lisp/lucid.el13
1 files changed, 11 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/lucid.el b/lisp/emacs-lisp/lucid.el
index 2138c13bf65..35404b967e6 100644
--- a/lisp/emacs-lisp/lucid.el
+++ b/lisp/emacs-lisp/lucid.el
@@ -117,7 +117,14 @@ bottom of the buffer stack."
(bury-buffer (current-buffer)))
(switch-to-buffer
(if (<= arg 1) (other-buffer (current-buffer))
- (nth (1+ arg) (buffer-list)))))
+ (nth (1+ arg)
+ (apply 'nconc
+ (mapcar
+ (lambda (buf)
+ (if (= (string-to-char (buffer-name (car (cdr tail))))
+ ?\ )
+ nil
+ (list buf)))))))))
(defalias 'find-face 'internal-find-face)
(defalias 'get-face 'internal-get-face)
@@ -165,7 +172,7 @@ bottom of the buffer stack."
;; (defalias 'set-screen-height 'set-frame-height)
(defalias 'set-screen-position 'set-frame-position)
(defalias 'set-screen-size 'set-frame-size)
-ll (defalias 'set-screen-width 'set-frame-width)
+;; (defalias 'set-screen-width 'set-frame-width)
(defalias 'switch-to-buffer-new-screen 'switch-to-buffer-other-frame)
;; (defalias 'unfocus-screen 'unfocus-frame)
(defalias 'visible-screen-list 'visible-frame-list)
@@ -173,4 +180,6 @@ ll (defalias 'set-screen-width 'set-frame-width)
(defalias 'x-create-screen 'x-create-frame)
(defalias 'x-new-screen 'new-frame)
+(provide 'lucid)
+
;;; end of lucid.el