mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Merge from origin/emacs-25
697167b; Improve wording of previous change in variables.texid7973e8Document 'default-toplevel-value' and 'set-default-toplevel-v...8b71826Don't modify minibuffer variables globally5b5e036Revert to pre-25.1 behavior in ffap19994a1* lisp/ffap.el: Fix obsolete comment referencing ffap-bug.3ace730Attempt to fix 64-bit AIX buildf69bd79Clarify usage of 'ediff-cleanup-hook' (Bug#24675)c04ac8aDocument that variable binding order is unspecified272554a* lisp/desktop.el (desktop-buffers-not-to-save): Doc fix.08de101Fix M-x hints on Mac port86a297aWork around reporting a dpi change in apply_xft_settingscf1f985; lisp/skeleton.el (skeleton-insert): Fix typo in last change9e1209dAmend the version number of CC Mode 5.33 -> 5.32.99. Don't m...88cdf14Improve skeleton docstrings
This commit is contained in:
commit
61848d2da3
12 changed files with 119 additions and 28 deletions
|
|
@ -716,13 +716,13 @@ The path separator is colon in GNU and GNU-like systems."
|
|||
;; (which will lead to the use of B/a).
|
||||
(minibuffer-with-setup-hook
|
||||
(lambda ()
|
||||
(setq minibuffer-completion-table
|
||||
(apply-partially #'locate-file-completion-table
|
||||
cd-path nil))
|
||||
(setq minibuffer-completion-predicate
|
||||
(lambda (dir)
|
||||
(locate-file dir cd-path nil
|
||||
(lambda (f) (and (file-directory-p f) 'dir-ok))))))
|
||||
(setq-local minibuffer-completion-table
|
||||
(apply-partially #'locate-file-completion-table
|
||||
cd-path nil))
|
||||
(setq-local minibuffer-completion-predicate
|
||||
(lambda (dir)
|
||||
(locate-file dir cd-path nil
|
||||
(lambda (f) (and (file-directory-p f) 'dir-ok))))))
|
||||
(unless cd-path
|
||||
(setq cd-path (or (parse-colon-path (getenv "CDPATH"))
|
||||
(list "./"))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue