emacs-devel
[Top][All Lists]
Advanced

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

debug-ignored-errors list for cus-edit


From: martin rudalics
Subject: debug-ignored-errors list for cus-edit
Date: Wed, 14 Jun 2006 10:50:45 +0200

cus-edit's contribution to `debug-ignored-errors' is a bit outdated.
Kindly ask you to consider the following instead:

*** cus-edit.el Mon May  1 10:08:52 2006
--- cus-edit.el Wed Jun 14 10:28:06 2006
***************
*** 1361,1370 ****
                                      (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)
!                           "*Customize Apropos*"))))

  ;;;###autoload
  (defun customize-apropos-options (regexp &optional arg)
--- 1361,1370 ----
                                      (get symbol 'variable-documentation))))
                    (push (list symbol 'custom-variable) found)))))
      (if (not found)
!       (error "No customizable items matching %s" regexp)
!       (custom-buffer-create
!        (custom-sort-items found t custom-buffer-order-groups)
!        "*Customize Apropos*"))))

  ;;;###autoload
  (defun customize-apropos-options (regexp &optional arg)
***************
*** 4515,4523 ****

  (put 'custom-mode 'mode-class 'special)

! (add-to-list
!  'debug-ignored-errors
!  "^No user options have changed defaults in recent Emacs versions$")

  ;;; The End.

--- 4515,4532 ----

  (put 'custom-mode 'mode-class 'special)

! (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]