aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-05-22 17:41:53 +0000
committerDave Love2000-05-22 17:41:53 +0000
commitf1ed9461a981f02ee73359e16e102d59b148a89b (patch)
treef06513a73bfd48244137b8af08c696ba6605cc21
parent87207d14072ad049fff1e34643b0e180f7e2ea0d (diff)
downloademacs-f1ed9461a981f02ee73359e16e102d59b148a89b.tar.gz
emacs-f1ed9461a981f02ee73359e16e102d59b148a89b.zip
Add to debug-ignored-errors.
-rw-r--r--lisp/comint.el7
-rw-r--r--lisp/imenu.el6
-rw-r--r--lisp/mail/mh-e.el6
-rw-r--r--lisp/progmodes/compile.el2
-rw-r--r--lisp/textmodes/ispell.el1
5 files changed, 21 insertions, 1 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index a08cd097c7a..eac6095bdb3 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -2726,6 +2726,13 @@ REGEXP-GROUP is the regular expression group in REGEXP to use."
2726 results))) 2726 results)))
2727 results))) 2727 results)))
2728 2728
2729(mapc (lambda (x)
2730 (add-to-list 'debug-ignored-errors x))
2731 '("^Not at command line$"
2732 "^Empty input ring$"
2733 "^No history$"
2734 "^Not found$" ; Too common?
2735 "^Current buffer has no process$"))
2729 2736
2730;; Converting process modes to use comint mode 2737;; Converting process modes to use comint mode
2731;; =========================================================================== 2738;; ===========================================================================
diff --git a/lisp/imenu.el b/lisp/imenu.el
index 2f1ad7c9c0c..64a5bd9941f 100644
--- a/lisp/imenu.el
+++ b/lisp/imenu.el
@@ -1101,6 +1101,12 @@ for more information."
1101 (apply function (car index-item) position rest)))) 1101 (apply function (car index-item) position rest))))
1102 (run-hooks 'imenu-after-jump-hook)) 1102 (run-hooks 'imenu-after-jump-hook))
1103 1103
1104(dolist (mess
1105 '("^No items suitable for an index found in this buffer$"
1106 "^This buffer cannot use `imenu-default-create-index-function'$"
1107 "^The mode `.*' does not support Imenu$"))
1108 (add-to-list 'debug-ignored-errors mess))
1109
1104(provide 'imenu) 1110(provide 'imenu)
1105 1111
1106;;; imenu.el ends here 1112;;; imenu.el ends here
diff --git a/lisp/mail/mh-e.el b/lisp/mail/mh-e.el
index 12a7ea9de47..afdb8ec384c 100644
--- a/lisp/mail/mh-e.el
+++ b/lisp/mail/mh-e.el
@@ -60,7 +60,7 @@
60;; Modified by James Larus, BBN, July 1984 and UCB, 1984 & 1985. 60;; Modified by James Larus, BBN, July 1984 and UCB, 1984 & 1985.
61;; Rewritten for GNU Emacs, James Larus 1985. larus@ginger.berkeley.edu 61;; Rewritten for GNU Emacs, James Larus 1985. larus@ginger.berkeley.edu
62;; Modified by Stephen Gildea 1988. gildea@lcs.mit.edu 62;; Modified by Stephen Gildea 1988. gildea@lcs.mit.edu
63(defconst mh-e-RCS-id "$Id: mh-e.el,v 1.22 1999/11/09 13:40:03 gerd Exp $") 63(defconst mh-e-RCS-id "$Id: mh-e.el,v 1.23 2000/03/07 12:36:39 gerd Exp $")
64 64
65;;; Code: 65;;; Code:
66 66
@@ -1521,4 +1521,8 @@ If optional prefix argument provided, then prompt for the message sequence." t)
1521(autoload 'mh-rename-seq "mh-seq" 1521(autoload 'mh-rename-seq "mh-seq"
1522 "Rename SEQUENCE to have NEW-NAME." t) 1522 "Rename SEQUENCE to have NEW-NAME." t)
1523 1523
1524(dolist (mess '("^Cursor not pointing to message$"
1525 "^There is no other window$"))
1526 (add-to-list 'debug-ignored-errors mess))
1527
1524;;; mh-e.el ends here 1528;;; mh-e.el ends here
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index e1f04d4a314..ef86ac15917 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -2028,6 +2028,8 @@ An error message with no file name and no file name has been seen earlier"))
2028 (substring dir (length parent-expanded))))) 2028 (substring dir (length parent-expanded)))))
2029 dir) 2029 dir)
2030 2030
2031(add-to-list 'debug-ignored-errors "^No more errors\\( yet\\|\\)$")
2032
2031(provide 'compile) 2033(provide 'compile)
2032 2034
2033;;; compile.el ends here 2035;;; compile.el ends here
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 206d8ce94a6..dc29f78ae5a 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -3180,6 +3180,7 @@ Both should not be used to define a buffer-local dictionary."
3180 (insert comment-end))))) 3180 (insert comment-end)))))
3181 (insert (concat " " word)))))))) 3181 (insert (concat " " word))))))))
3182 3182
3183(add-to-list 'debug-ignored-errors "^No word found to check!$")
3183 3184
3184(provide 'ispell) 3185(provide 'ispell)
3185 3186