aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-05-22 18:09:30 +0000
committerDave Love2000-05-22 18:09:30 +0000
commitd8d0fa6c59df22baa1c04d00e73e9aaf42f7424f (patch)
tree9065d1ba8ac79369aeeff12773fa13fcebeac17e
parentdd2cedb97c45b57c26883bfac4d5205cb977c8d6 (diff)
downloademacs-d8d0fa6c59df22baa1c04d00e73e9aaf42f7424f.tar.gz
emacs-d8d0fa6c59df22baa1c04d00e73e9aaf42f7424f.zip
Remove debug-ignored-errors set in other files.
-rw-r--r--lisp/ChangeLog23
-rw-r--r--lisp/bindings.el66
2 files changed, 24 insertions, 65 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ab52c50d90c..b36dbedebfa 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,26 @@
12000-05-22 Dave Love <fx@gnu.org>
2
3 * bindings.el: Remove debug-ignored-errors set in other files.
4
5 * progmodes/etags.el: Add to debug-ignored-errors.
6 (visit-tags-table-buffer): Clear out buffers holding old tables
7 when making a new list.
8 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
9 mapc.
10
11 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
12 quote keywords.
13 (cmpl-string-case-type): Use character classes.
14
15 * comint.el:
16 * textmodes/ispell.el:
17 * imenu.el:
18 * mail/mh-e.el:
19 * progmodes/compile.el: Add to debug-ignored-errors.
20
21 * dabbrev.el: Add to debug-ignored-errors.
22 (dabbrev-completion): Use mapc.
23
12000-05-22 Eli Zaretskii <eliz@is.elta.co.il> 242000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
2 25
3 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk) 26 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
diff --git a/lisp/bindings.el b/lisp/bindings.el
index e8b92b54e88..6d75d691de0 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -364,63 +364,6 @@ buffer, mouse-2: prev, M-mouse-2: next, mouse-3: buffer menu")
364 "^Save not confirmed$" 364 "^Save not confirmed$"
365 "^Recover-file cancelled\\.$" 365 "^Recover-file cancelled\\.$"
366 "^Cannot switch buffers in a dedicated window$" 366 "^Cannot switch buffers in a dedicated window$"
367
368 ;; comint
369 "^Not at command line$"
370 "^Empty input ring$"
371 "^No history$"
372 "^Not found$";; To common?
373 "^Current buffer has no process$"
374
375 ;; dabbrev
376 "^No dynamic expansion for .* found$"
377 "^No further dynamic expansion for .* found$"
378 "^No possible abbreviation preceding point$"
379
380 ;; Completion
381 "^To complete, the point must be after a symbol at least [0-9]* character long\\.$"
382 "^The string \".*\" is too short to be saved as a completion\\.$"
383
384 ;; Compile
385 "^No more errors\\( yet\\|\\)$"
386
387 ;; Gnus
388 "^NNTP: Connection closed\\.$"
389
390 ;; info
391 "^Node has no Previous$"
392 "^No menu in this node$"
393 "^Node has no Next$"
394 "^No \".*\" in index$"
395
396 ;; imenu
397 "^No items suitable for an index found in this buffer\\.$"
398 "^This buffer cannot use `imenu-default-create-index-function'$"
399 "^The mode `.*' does not support Imenu$"
400
401 ;; ispell
402 "^No word found to check!$"
403
404 ;; mh-e
405 "^Cursor not pointing to message$"
406 "^There is no other window$"
407
408 ;; man
409 "^No manpage [0-9]* found$"
410 "^Can't find the .* manpage$"
411
412 ;; etags
413 "^No tags table in use; use .* to select one$"
414 "^There is no default tag$"
415 "^No previous tag locations$"
416 "^File .* is not a valid tags table$"
417 "^No \\(more \\|\\)tags \\(matching\\|containing\\) "
418 "^Rerun etags: `.*' not found in "
419 "^All files processed$"
420 "^No .* or .* in progress$"
421 "^File .* not in current tags tables$"
422 "^No tags table loaded"
423 "^Nothing to complete$"
424 367
425 ;; ediff 368 ;; ediff
426 "^Errors in diff output. Diff output is in " 369 "^Errors in diff output. Diff output is in "
@@ -468,14 +411,7 @@ buffer, mouse-2: prev, M-mouse-2: next, mouse-3: buffer menu")
468 "^Merge of directory revisions aborted$" 411 "^Merge of directory revisions aborted$"
469 "^Buffer .* doesn't exist$" 412 "^Buffer .* doesn't exist$"
470 "^There is no file to merge$" 413 "^There is no file to merge$"
471 "^Version control package .*.el not found. Use vc.el instead$" 414 "^Version control package .*.el not found. Use vc.el instead$"))
472
473 ;; cus-edit
474 "^No user options have changed defaults in recent Emacs versions$"
475
476 ;; BBDB
477 "^no previous record$"
478 "^no next record$"))
479 415
480 416
481(make-variable-buffer-local 'indent-tabs-mode) 417(make-variable-buffer-local 'indent-tabs-mode)