Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
dedd1884
Commit
dedd1884
authored
Nov 15, 2012
by
Glenn Morris
Browse files
* lisp/faces.el (face-underline-p): Use face-attribute-specified-or.
parent
d56f2e49
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/faces.el
lisp/faces.el
+1
-1
No files found.
lisp/ChangeLog
View file @
dedd1884
2012-11-16 Glenn Morris <rgm@gnu.org>
* faces.el (face-underline-p): Use face-attribute-specified-or.
2012-11-15 Juanma Barranquero <lekktu@gmail.com>
* emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
...
...
lisp/faces.el
View file @
dedd1884
...
...
@@ -497,7 +497,7 @@ with the `default' face (which is always completely specified)."
If the optional argument FRAME is given, report on face FACE in that frame.
If FRAME is t, report on the defaults for face FACE (for new frames).
If FRAME is omitted or nil, use the selected frame."
(
not
(
memq
(
face-attribute
face
:underline
frame
)
'
(
unspecified
nil
))
))
(
face-attribute-specified-or
(
face-attribute
face
:underline
frame
)
nil
))
(
defun
face-inverse-video-p
(
face
&optional
frame
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment