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: Eli Zaretskii
Subject: [Emacs-diffs] Changes to emacs/lisp/cus-edit.el,v
Date: Fri, 23 Jun 2006 13:17:06 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Eli Zaretskii <eliz>    06/06/23 13:17:05

Index: cus-edit.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/cus-edit.el,v
retrieving revision 1.294
retrieving revision 1.295
diff -u -b -r1.294 -r1.295
--- cus-edit.el 19 Jun 2006 21:46:54 -0000      1.294
+++ cus-edit.el 23 Jun 2006 13:17:05 -0000      1.295
@@ -1366,9 +1366,9 @@
                                      (get symbol 'variable-documentation))))
                    (push (list symbol 'custom-variable) found)))))
     (if (not found)
-       (error "No matches")
-      (custom-buffer-create (custom-sort-items found t
-                                              custom-buffer-order-groups)
+       (error "No customizable items matching %s" regexp)
+      (custom-buffer-create
+       (custom-sort-items found t custom-buffer-order-groups)
                            "*Customize Apropos*"))))
 
 ;;;###autoload
@@ -4520,9 +4520,18 @@
 
 (put 'custom-mode 'mode-class 'special)
 
-(add-to-list
- 'debug-ignored-errors
- "^No user options have changed defaults in recent Emacs versions$")
+(dolist (regexp
+        '("^No user option defaults have been changed since Emacs "
+          "^Invalid face:? "
+          "^No \\(?:customized\\|rogue\\|saved\\) user options"
+          "^No customizable items matching "
+          "^There are unset changes"
+          "^Cannot set hidden variable"
+          "^No \\(?:saved\\|backup\\) value for "
+          "^No standard setting known for "
+          "^No standard setting for this face"
+          "^Saving settings from \"emacs -q\" would overwrite existing 
customizations"))
+  (add-to-list 'debug-ignored-errors regexp))
 
 ;;; The End.
 




reply via email to

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