mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
* 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.
This commit is contained in:
parent
28dbf5014a
commit
e084483dea
1 changed files with 11 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue