diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-03-28 21:56:57 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-03-28 21:56:57 +0000 |
commit | c79e04d88b1aaab5e27366a8090b4c0c954bc753 (patch) | |
tree | 10a0179c7addc609df54d4356e41266249b0fc4e /lisp/bindings.el | |
parent | f5f9a3da6b1414a452727c60156dc574044a69e5 (diff) | |
download | emacs-c79e04d88b1aaab5e27366a8090b4c0c954bc753.tar.gz |
(completion-ignored-extensions): Add a few.
(debug-ignored-errors): Add file-supersession.
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r-- | lisp/bindings.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index 34ab84ecf8d..6af10f12911 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -138,6 +138,12 @@ is okay. See `mode-line-format'.") ".glo" ".idx" ".lot" ;; TeX-related ".dvi" ".fmt" + ;; Java compiled + ".class" + ;; Clisp + ".fas" ".lib" + ;; CMUCL + ".x86f" ;; Texinfo-related ".toc" ".log" ".aux" ".cp" ".fn" ".ky" ".pg" ".tp" ".vr" @@ -146,6 +152,7 @@ is okay. See `mode-line-format'.") (setq debug-ignored-errors '(beginning-of-line beginning-of-buffer end-of-line end-of-buffer end-of-file buffer-read-only + file-supersession "^Previous command was not a yank$" "^Minibuffer window is not active$" "^End of history; no next item$" |