[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Emacs-diffs] /srv/bzr/emacs/trunk r106763: Fix shell completion reg
From: |
Chong Yidong |
Subject: |
Re: [Emacs-diffs] /srv/bzr/emacs/trunk r106763: Fix shell completion regression. |
Date: |
Thu, 05 Jan 2012 22:50:30 +0800 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.0.92 (gnu/linux) |
Stefan Monnier <address@hidden> writes:
>> @@ -187,10 +187,11 @@
>> shell-environment-variable-completion
>> shell-command-completion
>> shell-c-a-p-replace-by-expanded-directory
>> - pcomplete-completions-at-point
>> shell-filename-completion
>> - ;; Not sure when this one would still be useful. --Stef
>> - comint-filename-completion)
>> + comint-filename-completion
>> + ;; This goes last, so that `comint-filename-completion' can handle
>> + ;; `shell-completion-execonly' (Bug#10417).
>> + pcomplete-completions-at-point)
>> "List of functions called to perform completion.
>
> Doesn't this just basically disable pcomplete?
I worked out the proper fix. Thanks for the heads up.