mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 08:43:40 -07:00
(facemenu-active-faces):
Use face-attributes-as-vector, not face-attributes-vector.
This commit is contained in:
parent
edde72f6c6
commit
f790dddf6d
2 changed files with 7 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2002-01-02 Richard M. Stallman <rms@gnu.org>
|
||||
|
||||
* facemenu.el (facemenu-active-faces):
|
||||
Use face-attributes-as-vector, not face-attributes-vector.
|
||||
|
||||
2002-01-02 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* bindings.el (function-key-map): Don't bind shifted keypad
|
||||
|
|
|
|||
|
|
@ -611,7 +611,7 @@ If the optional argument FRAME is given, use the faces in that frame; otherwise
|
|||
use the selected frame. If t, then the global, non-frame faces are used."
|
||||
(let* ((mask-atts (copy-sequence
|
||||
(if (consp (car face-list))
|
||||
(face-attribute-vector (car face-list))
|
||||
(face-attributes-as-vector (car face-list))
|
||||
(or (internal-lisp-face-p (car face-list) frame)
|
||||
(check-face (car face-list))))))
|
||||
(active-list (list (car face-list)))
|
||||
|
|
@ -620,7 +620,7 @@ use the selected frame. If t, then the global, non-frame faces are used."
|
|||
(while face-list
|
||||
(if (let ((face-atts
|
||||
(if (consp (car face-list))
|
||||
(face-attribute-vector (car face-list))
|
||||
(face-attributes-as-vector (car face-list))
|
||||
(or (internal-lisp-face-p (car face-list) frame)
|
||||
(check-face (car face-list)))))
|
||||
(i mask-len)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue