aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/faces.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 81204ca2332..a62288dd29a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12012-11-16 Glenn Morris <rgm@gnu.org>
2
3 * faces.el (face-underline-p): Use face-attribute-specified-or.
4
12012-11-15 Juanma Barranquero <lekktu@gmail.com> 52012-11-15 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes. 7 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
diff --git a/lisp/faces.el b/lisp/faces.el
index d07c4d6f5a5..9e0ca962499 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -497,7 +497,7 @@ with the `default' face (which is always completely specified)."
497If the optional argument FRAME is given, report on face FACE in that frame. 497If the optional argument FRAME is given, report on face FACE in that frame.
498If FRAME is t, report on the defaults for face FACE (for new frames). 498If FRAME is t, report on the defaults for face FACE (for new frames).
499If FRAME is omitted or nil, use the selected frame." 499If FRAME is omitted or nil, use the selected frame."
500 (not (memq (face-attribute face :underline frame) '(unspecified nil)))) 500 (face-attribute-specified-or (face-attribute face :underline frame) nil))
501 501
502 502
503(defun face-inverse-video-p (face &optional frame) 503(defun face-inverse-video-p (face &optional frame)