aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-03-28 21:56:57 +0000
committerRichard M. Stallman1998-03-28 21:56:57 +0000
commitc79e04d88b1aaab5e27366a8090b4c0c954bc753 (patch)
tree10a0179c7addc609df54d4356e41266249b0fc4e
parentf5f9a3da6b1414a452727c60156dc574044a69e5 (diff)
downloademacs-c79e04d88b1aaab5e27366a8090b4c0c954bc753.tar.gz
emacs-c79e04d88b1aaab5e27366a8090b4c0c954bc753.zip
(completion-ignored-extensions): Add a few.
(debug-ignored-errors): Add file-supersession.
-rw-r--r--lisp/bindings.el7
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'.")
138 ".glo" ".idx" ".lot" 138 ".glo" ".idx" ".lot"
139 ;; TeX-related 139 ;; TeX-related
140 ".dvi" ".fmt" 140 ".dvi" ".fmt"
141 ;; Java compiled
142 ".class"
143 ;; Clisp
144 ".fas" ".lib"
145 ;; CMUCL
146 ".x86f"
141 ;; Texinfo-related 147 ;; Texinfo-related
142 ".toc" ".log" ".aux" 148 ".toc" ".log" ".aux"
143 ".cp" ".fn" ".ky" ".pg" ".tp" ".vr" 149 ".cp" ".fn" ".ky" ".pg" ".tp" ".vr"
@@ -146,6 +152,7 @@ is okay. See `mode-line-format'.")
146(setq debug-ignored-errors 152(setq debug-ignored-errors
147 '(beginning-of-line beginning-of-buffer end-of-line 153 '(beginning-of-line beginning-of-buffer end-of-line
148 end-of-buffer end-of-file buffer-read-only 154 end-of-buffer end-of-file buffer-read-only
155 file-supersession
149 "^Previous command was not a yank$" 156 "^Previous command was not a yank$"
150 "^Minibuffer window is not active$" 157 "^Minibuffer window is not active$"
151 "^End of history; no next item$" 158 "^End of history; no next item$"