Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
0b97da8f
Commit
0b97da8f
authored
Jan 02, 2007
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(customize-unsaved): Renamed from customize-customized.
Change messages accordingly. (customize-customized): Now alias.
parent
e6a24f43
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
lisp/cus-edit.el
lisp/cus-edit.el
+6
-4
No files found.
lisp/cus-edit.el
View file @
0b97da8f
...
...
@@ -1320,9 +1320,11 @@ suggest to customize that face, if it's customizable."
(
format
"*Customize Face: %s*"
(
custom-unlispify-tag-name
face
)))))
(
defalias
'customize-customized
'customize-unsaved
)
;;;###autoload
(
defun
customize-
customiz
ed
()
"Customize all user options set
s
in
ce
th
e last save in this session
."
(
defun
customize-
unsav
ed
()
"Customize all user options set in th
is session but not saved
."
(
interactive
)
(
let
((
found
nil
))
(
mapatoms
(
lambda
(
symbol
)
...
...
@@ -1335,9 +1337,9 @@ suggest to customize that face, if it's customizable."
(
boundp
symbol
)
(
push
(
list
symbol
'custom-variable
)
found
))))
(
if
(
not
found
)
(
error
"No
c
us
tomized us
er options"
)
(
error
"No user options
are set but unsaved
"
)
(
custom-buffer-create
(
custom-sort-items
found
t
nil
)
"*Customize
Customiz
ed*"
))))
"*Customize
Unsav
ed*"
))))
;;;###autoload
(
defun
customize-rogue
()
...
...
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