1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

(enriched-face-ans): Use face-attribute instead

of face-foreground and face-background.
This commit is contained in:
Gerd Moellmann 2000-11-29 19:22:47 +00:00
parent 3fae165ccb
commit c795794783
2 changed files with 13 additions and 2 deletions

View File

@ -1,5 +1,16 @@
2000-11-29 Gerd Moellmann <gerd@gnu.org>
* toolbar/tool-bar.el (tool-bar-add-item-from-menu): Use
face-attribute instead of face-foreground and face-background.
(tool-bar-add-item): Likewise, and handle unspecified colors.
* enriched.el (enriched-face-ans): Use face-attribute instead
of face-foreground and face-background.
* faces.el (face-foreground, face-background, face-stipple):
Return nil if attribute is unspecified, for backward
compatibility.
* files.el (auto-mode-alist): Add an entry for antlr-mode.
* play/5x5.el: Remove version info.

View File

@ -356,8 +356,8 @@ One annotation each for foreground color, background color, italic, etc."
(list (list "x-color" (substring (symbol-name face) 3))))
((string-match "^bg:" (symbol-name face))
(list (list "x-bg-color" (substring (symbol-name face) 3))))
((let* ((fg (face-foreground face))
(bg (face-background face))
((let* ((fg (face-attribute face :foreground))
(bg (face-attribute face :background))
(props (face-font face t))
(ans (cdr (format-annotate-single-property-change
'face nil props enriched-translations))))