Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d7f5c16f
Commit
d7f5c16f
authored
Apr 20, 2013
by
Roland Winkler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lisp/faces.el (read-face-name): Bug fix, return just one face if arg multiple is nil
parent
bcd7a0a4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/faces.el
lisp/faces.el
+2
-3
No files found.
lisp/ChangeLog
View file @
d7f5c16f
2013-04-20 Roland Winkler <winkler@gnu.org>
* faces.el (read-face-name): Bug fix, return just one face if arg
multiple is nil. (Bug#14209)
2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/nadvice.el (advice--where-alist): Add :override.
...
...
lisp/faces.el
View file @
d7f5c16f
...
...
@@ -979,9 +979,8 @@ if the user entered more than one face name, return only the first one."
;; (for example, because DEFAULT was "all faces")
(
if
(
facep
face
)
(
push
(
intern
face
)
faces
)))
;; Return either a list of faces or just one face.
(
if
multiple
(
nreverse
faces
)
(
last
faces
))))
(
setq
faces
(
nreverse
faces
))
(
if
multiple
faces
(
car
faces
))))
;; Not defined without X, but behind window-system test.
(
defvar
x-bitmap-file-path
)
...
...
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