[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Emacs-diffs] emacs-25 85121e0: Allow completion on dynamic module f
From: |
Eli Zaretskii |
Subject: |
Re: [Emacs-diffs] emacs-25 85121e0: Allow completion on dynamic module files in load-library |
Date: |
Wed, 25 Nov 2015 05:34:32 +0200 |
> From: Stefan Monnier <address@hidden>
> Cc: Eli Zaretskii <address@hidden>
> Date: Tue, 24 Nov 2015 16:12:58 -0500
>
> > - (list (completing-read "Load library: "
> > - (apply-partially 'locate-file-completion-table
> > - load-path
> > - (get-load-suffixes)))))
> > + (let (completion-ignored-extensions)
> > + (list (completing-read "Load library: "
> > + (apply-partially 'locate-file-completion-table
> > + load-path
> > + (get-load-suffixes))))))
>
> Hmm... maybe we should even push this let-binding directly into
> locate-file-completion-table.
> WDYT?
Even if suffixes are nil?
But if you say so, I don't object; I admit I don't fully understand
that function.