aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog34
-rw-r--r--lisp/dabbrev.el2
2 files changed, 35 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6af04a5152e..d009c258038 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,37 @@
12008-03-21 Juri Linkov <juri@jurta.org>
2
3 * comint.el (comint-dynamic-simple-complete):
4 Use variable `stub' for the second arg `common-substring'
5 of `comint-dynamic-list-completions'.
6 (comint-dynamic-list-filename-completions):
7 Use variable `filenondir' for the second arg `common-substring'
8 of `comint-dynamic-list-completions'.
9 (comint-dynamic-list-completions): Add new optional arg
10 `common-substring'. Add `common-substring' as the second arg of
11 the call to `display-completion-list'. Doc fix.
12
13 * comint.el (comint-dynamic-complete-as-filename)
14 (comint-dynamic-list-filename-completions)
15 (comint-dynamic-simple-complete): Use `minibuffer-message'
16 to display message "No completions of %s" when a command
17 is called in the minibuffer.
18 (comint-dynamic-simple-complete): Don't display other
19 completion messages when a command is called in the minibuffer.
20 (comint-dynamic-list-completions): Use `minibuffer-message'
21 to display message " [Type space to flush ...]" when a command
22 is called in the minibuffer.
23
24 * shell.el (shell-dynamic-complete-command)
25 (shell-dynamic-complete-environment-variable): Don't display
26 completion messages when command is called in the minibuffer.
27
28 * bindings.el (standard-mode-line-modes): Put special help-echo
29 tooltip on recursive edit %[ %] mode-line constructs.
30
31 * dabbrev.el (debug-ignored-errors): Remove $ from the end of
32 "^No dynamic expansion for .* found$" to allow error messages like
33 "No dynamic expansion for \"%s\" found in this-buffer".
34
12008-03-21 Michael Albinus <michael.albinus@gmx.de> 352008-03-21 Michael Albinus <michael.albinus@gmx.de>
2 36
3 * net/tramp.el (tramp-methods): Fix tramp-copy-args of "pscp" and 37 * net/tramp.el (tramp-methods): Fix tramp-copy-args of "pscp" and
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."
1011 (cons found-string dabbrev--last-table)) 1011 (cons found-string dabbrev--last-table))
1012 result))))) 1012 result)))))
1013 1013
1014(dolist (mess '("^No dynamic expansion for .* found$" 1014(dolist (mess '("^No dynamic expansion for .* found"
1015 "^No further dynamic expansion for .* found$" 1015 "^No further dynamic expansion for .* found$"
1016 "^No possible abbreviation preceding point$")) 1016 "^No possible abbreviation preceding point$"))
1017 (add-to-list 'debug-ignored-errors mess)) 1017 (add-to-list 'debug-ignored-errors mess))