Mercurial > emacs
comparison lisp/ChangeLog @ 55901:7814348a02ec
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-370
Move `display-supports-face-attributes-p' entirely into C code
Previously only the tty-related portion of display-supports-face-attributes-p
was done in C. This just moves the graphical-display related bits into C
too, which allows us to implement them properly (the previous attempt to do a
halfway-proper job in lisp didn't work because of funny conditions during
emacs startup).
author | Miles Bader <miles@gnu.org> |
---|---|
date | Fri, 04 Jun 2004 06:00:59 +0000 |
parents | d8a2b8a11274 |
children | 084530cb1b2f |
comparison
equal
deleted
inserted
replaced
55900:d8a2b8a11274 | 55901:7814348a02ec |
---|---|
2 | 2 |
3 * vc-svn.el (vc-svn-checkin): Use 'nconc' instead of 'list*', | 3 * vc-svn.el (vc-svn-checkin): Use 'nconc' instead of 'list*', |
4 because the latter is a CL-ism. This fixes the bug reported by | 4 because the latter is a CL-ism. This fixes the bug reported by |
5 Shawn Boyette <mdxi@collapsar.net> in | 5 Shawn Boyette <mdxi@collapsar.net> in |
6 http://lists.gnu.org/archive/html/emacs-devel/2004-05/msg00442.html. | 6 http://lists.gnu.org/archive/html/emacs-devel/2004-05/msg00442.html. |
7 | |
8 2004-06-04 Miles Bader <miles@gnu.org> | |
9 | |
10 * faces.el (display-supports-face-attributes-p): Function moved to | |
11 C code. Previously only the tty-related portion of this function | |
12 was done in C; however the previous attempt to do a halfway-proper | |
13 job for non-tty displays in lisp didn't work properly because of | |
14 funny conditions during emacs startup. | |
7 | 15 |
8 2004-06-04 Miles Bader <miles@gnu.org> | 16 2004-06-04 Miles Bader <miles@gnu.org> |
9 | 17 |
10 * faces.el (face-differs-from-default-p): Use a different | 18 * faces.el (face-differs-from-default-p): Use a different |
11 implementation, so we can really check whether FACE displays | 19 implementation, so we can really check whether FACE displays |