bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#60411: 29.0.60; minibuffer-next-completion skips first candidate whe


From: Juri Linkov
Subject: bug#60411: 29.0.60; minibuffer-next-completion skips first candidate when completions-header-format and completion-show-help are nil
Date: Sat, 07 Jan 2023 20:15:02 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/30.0.50 (x86_64-pc-linux-gnu)

>> +      (when (and (= n 1)
>> +                 (= (point) (point-min))
>> +                 (get-text-property (point) 'mouse-face)
>> +                 (not (get-text-property (point) 'first-completion)))
>> +        (let ((inhibit-read-only t))
>> +          (add-text-properties (point) (1+ (point)) '(first-completion t)))
>> +        (setq n 0))
>
> Please remove (= n 1) and replace (setq n 0) with (setq n (1- n))
> to support the prefix arg with ‘M-N M-n’.

When n > 0.





reply via email to

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