[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: |
Stefan Monnier |
Subject: |
Re: [Emacs-diffs] /srv/bzr/emacs/trunk r106763: Fix shell completion regression. |
Date: |
Wed, 04 Jan 2012 23:51:09 -0500 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.0.92 (gnu/linux) |
> @@ -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?
Stefan