# HG changeset patch # User Dave Love # Date 959017313 0 # Node ID 2e20146198ce02089af9c9c765838240aceb3eee # Parent 07f205e3af83a2a28fabc0017b8394766458faae Add to debug-ignored-errors. diff -r 07f205e3af83 -r 2e20146198ce lisp/comint.el --- a/lisp/comint.el Mon May 22 17:30:42 2000 +0000 +++ b/lisp/comint.el Mon May 22 17:41:53 2000 +0000 @@ -2726,6 +2726,13 @@ results))) results))) +(mapc (lambda (x) + (add-to-list 'debug-ignored-errors x)) + '("^Not at command line$" + "^Empty input ring$" + "^No history$" + "^Not found$" ; Too common? + "^Current buffer has no process$")) ;; Converting process modes to use comint mode ;; =========================================================================== diff -r 07f205e3af83 -r 2e20146198ce lisp/imenu.el --- a/lisp/imenu.el Mon May 22 17:30:42 2000 +0000 +++ b/lisp/imenu.el Mon May 22 17:41:53 2000 +0000 @@ -1101,6 +1101,12 @@ (apply function (car index-item) position rest)))) (run-hooks 'imenu-after-jump-hook)) +(dolist (mess + '("^No items suitable for an index found in this buffer$" + "^This buffer cannot use `imenu-default-create-index-function'$" + "^The mode `.*' does not support Imenu$")) + (add-to-list 'debug-ignored-errors mess)) + (provide 'imenu) ;;; imenu.el ends here diff -r 07f205e3af83 -r 2e20146198ce lisp/mail/mh-e.el --- a/lisp/mail/mh-e.el Mon May 22 17:30:42 2000 +0000 +++ b/lisp/mail/mh-e.el Mon May 22 17:41:53 2000 +0000 @@ -60,7 +60,7 @@ ;; Modified by James Larus, BBN, July 1984 and UCB, 1984 & 1985. ;; Rewritten for GNU Emacs, James Larus 1985. larus@ginger.berkeley.edu ;; Modified by Stephen Gildea 1988. gildea@lcs.mit.edu -(defconst mh-e-RCS-id "$Id: mh-e.el,v 1.22 1999/11/09 13:40:03 gerd Exp $") +(defconst mh-e-RCS-id "$Id: mh-e.el,v 1.23 2000/03/07 12:36:39 gerd Exp $") ;;; Code: @@ -1521,4 +1521,8 @@ (autoload 'mh-rename-seq "mh-seq" "Rename SEQUENCE to have NEW-NAME." t) +(dolist (mess '("^Cursor not pointing to message$" + "^There is no other window$")) + (add-to-list 'debug-ignored-errors mess)) + ;;; mh-e.el ends here diff -r 07f205e3af83 -r 2e20146198ce lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Mon May 22 17:30:42 2000 +0000 +++ b/lisp/progmodes/compile.el Mon May 22 17:41:53 2000 +0000 @@ -2028,6 +2028,8 @@ (substring dir (length parent-expanded))))) dir) +(add-to-list 'debug-ignored-errors "^No more errors\\( yet\\|\\)$") + (provide 'compile) ;;; compile.el ends here diff -r 07f205e3af83 -r 2e20146198ce lisp/textmodes/ispell.el --- a/lisp/textmodes/ispell.el Mon May 22 17:30:42 2000 +0000 +++ b/lisp/textmodes/ispell.el Mon May 22 17:41:53 2000 +0000 @@ -3180,6 +3180,7 @@ (insert comment-end))))) (insert (concat " " word)))))))) +(add-to-list 'debug-ignored-errors "^No word found to check!$") (provide 'ispell)