diff lisp/imenu.el @ 29078:2e20146198ce

Add to debug-ignored-errors.
author Dave Love <fx@gnu.org>
date Mon, 22 May 2000 17:41:53 +0000
parents f1417ed050c0
children 4c89037af077
line wrap: on
line diff
--- 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