diff options
author | Juri Linkov <juri@jurta.org> | 2008-03-22 00:02:24 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2008-03-22 00:02:24 +0000 |
commit | df27f31fa66959eef1b69a0d02033eb41d8b78fb (patch) | |
tree | 776a9ba4f2fac700cfad7f9c6eff52858c30276e /lisp/dabbrev.el | |
parent | b7fd8c465fe49e61ae228548c7abb4b6616135cf (diff) | |
download | emacs-df27f31fa66959eef1b69a0d02033eb41d8b78fb.tar.gz |
(debug-ignored-errors): Remove $ from the end of
"^No dynamic expansion for .* found$" to allow error messages like
"No dynamic expansion for \"%s\" found in this buffer".
Diffstat (limited to 'lisp/dabbrev.el')
-rw-r--r-- | lisp/dabbrev.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dabbrev.el b/lisp/dabbrev.el index b5ae7ac3b71..23d91d180af 100644 --- a/lisp/dabbrev.el +++ b/lisp/dabbrev.el @@ -1011,7 +1011,7 @@ Leaves point at the location of the start of the expansion." (cons found-string dabbrev--last-table)) result))))) -(dolist (mess '("^No dynamic expansion for .* found$" +(dolist (mess '("^No dynamic expansion for .* found" "^No further dynamic expansion for .* found$" "^No possible abbreviation preceding point$")) (add-to-list 'debug-ignored-errors mess)) |