]> git.eshelyaron.com Git - emacs.git/commitdiff
(customize-unsaved): Renamed from customize-customized.
authorRichard M. Stallman <rms@gnu.org>
Tue, 2 Jan 2007 20:55:54 +0000 (20:55 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 2 Jan 2007 20:55:54 +0000 (20:55 +0000)
Change messages accordingly.
(customize-customized): Now alias.

lisp/cus-edit.el

index 59026942281c13c6b8ac6702740d706569a29345..27ce163157bc349ba98057a22a7035d421071849 100644 (file)
@@ -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-customized ()
-  "Customize all user options set since the last save in this session."
+(defun customize-unsaved ()
+  "Customize all user options set in this 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 customized user options")
+       (error "No user options are set but unsaved")
       (custom-buffer-create (custom-sort-items found t nil)
-                           "*Customize Customized*"))))
+                           "*Customize Unsaved*"))))
 
 ;;;###autoload
 (defun customize-rogue ()