emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Emacs-diffs] emacs-25 b99141d: Make erc completion case-insensitive


From: Lars Ingebrigtsen
Subject: Re: [Emacs-diffs] emacs-25 b99141d: Make erc completion case-insensitive again
Date: Fri, 05 Feb 2016 13:29:21 +1100
User-agent: Gnus/5.130014 (Ma Gnus v0.14) Emacs/25.1.50 (gnu/linux)

Stefan Monnier <address@hidden> writes:

> If the elements in the completion table are indeed case-insensitive,
> then the right way to do that is to set the
> completion-table accordingly.
>
> E.g. replace
>
>      <completion-table>
>
> with
>
>      (lambda (s p a)
>        (let ((completion-ignore-case t))
>          (complete-with-action a <completion-table> s p)))

Hm...  If I do the following in pcomplete-completions-at-point

-          (list beg (point) table
+          (list beg (point)
+                (lambda (s p a)
+                  (let ((completion-ignore-case t))
+                    (complete-with-action a table s p)))

it still doesn't give me case-insensitive completion...

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no



reply via email to

[Prev in Thread] Current Thread [Next in Thread]