emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/cus-edit.el,v


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/cus-edit.el,v
Date: Tue, 02 Jan 2007 20:55:55 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Richard M. Stallman <rms>       07/01/02 20:55:55

Index: cus-edit.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/cus-edit.el,v
retrieving revision 1.314
retrieving revision 1.315
diff -u -b -r1.314 -r1.315
--- cus-edit.el 26 Dec 2006 21:47:53 -0000      1.314
+++ cus-edit.el 2 Jan 2007 20:55:54 -0000       1.315
@@ -1320,9 +1320,11 @@
      (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 @@
                     (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 ()




reply via email to

[Prev in Thread] Current Thread [Next in Thread]