Function: customize-unsaved
customize-unsaved is an autoloaded, interactive and byte-compiled
function defined in cus-edit.el.gz.
Signature
(customize-unsaved)
Documentation
Customize all options and faces set in this session but not saved.
Key Bindings
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
;;;###autoload
(defun customize-unsaved ()
"Customize all options and faces set in this session but not saved."
(interactive)
(let ((found (custom-unsaved-options)))
(if (not found)
(error "No user options are set but unsaved")
(custom-buffer-create (custom-sort-items found t nil)
"*Customize Unsaved*"))))