aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/shell.el7
2 files changed, 10 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 055d929fc51..8679b2c4f59 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12012-01-03 Chong Yidong <cyd@gnu.org>
2
3 * shell.el (shell-dynamic-complete-functions): Put
4 pcomplete-completions-at-point, so as to try
5 comint-filename-completion first (Bug#10417).
6
12012-01-02 Richard Stallman <rms@gnu.org> 72012-01-02 Richard Stallman <rms@gnu.org>
2 8
3 * battery.el (battery-status-function): 9 * battery.el (battery-status-function):
diff --git a/lisp/shell.el b/lisp/shell.el
index 7da1add8e9a..4e570c6326a 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -187,10 +187,11 @@ This is a fine thing to set in your `.emacs' file.")
187 shell-environment-variable-completion 187 shell-environment-variable-completion
188 shell-command-completion 188 shell-command-completion
189 shell-c-a-p-replace-by-expanded-directory 189 shell-c-a-p-replace-by-expanded-directory
190 pcomplete-completions-at-point
191 shell-filename-completion 190 shell-filename-completion
192 ;; Not sure when this one would still be useful. --Stef 191 comint-filename-completion
193 comint-filename-completion) 192 ;; This goes last, so that `comint-filename-completion' can handle
193 ;; `shell-completion-execonly' (Bug#10417).
194 pcomplete-completions-at-point)
194 "List of functions called to perform completion. 195 "List of functions called to perform completion.
195This variable is used to initialize `comint-dynamic-complete-functions' in the 196This variable is used to initialize `comint-dynamic-complete-functions' in the
196shell buffer. 197shell buffer.