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
0344bc5a
Commit
0344bc5a
authored
Apr 25, 2002
by
Miles Bader
Browse files
Don't use symbol-name when we don't have to.
parent
e16a8037
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
lisp/cus-edit.el
lisp/cus-edit.el
+2
-4
No files found.
lisp/cus-edit.el
View file @
0344bc5a
...
...
@@ -1043,8 +1043,7 @@ suggest to customized that face, if it's customizable."
(
list
(
let
((
face
(
get-char-property
(
point
)
'face
)))
(
if
(
and
face
(
symbolp
face
))
(
completing-read
(
format
"Customize face (default `%s'): "
(
symbol-name
face
))
(
completing-read
(
format
"Customize face (default `%s'): "
face
)
obarray
'custom-facep
t
nil
nil
(
symbol-name
face
))
(
completing-read
"Customize face (default all): "
obarray
'custom-facep
t
)))))
...
...
@@ -1073,8 +1072,7 @@ suggest to customized that face, if it's customizable."
(
list
(
let
((
face
(
get-char-property
(
point
)
'face
)))
(
if
(
and
face
(
symbolp
face
))
(
completing-read
(
format
"Customize face (default `%s'): "
(
symbol-name
face
))
(
completing-read
(
format
"Customize face (default `%s'): "
face
)
obarray
'custom-facep
t
nil
nil
(
symbol-name
face
))
(
completing-read
"Customize face (default all): "
obarray
'custom-facep
t
)))))
...
...
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