GNU bug report logs -
#55079
28.1; kp-decimal not working in vhdl-stutter-mode
Previous Next
Reported by: Cyril Arnould <cyril.arnould <at> outlook.com>
Date: Sat, 23 Apr 2022 09:53:01 UTC
Severity: normal
Tags: moreinfo
Found in version 28.1
Done: Eli Zaretskii <eliz <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
> From: Stefan Monnier <monnier <at> iro.umontreal.ca>
> Cc: Reto Zimmermann <reto <at> gnu.org>, Cyril Arnould
> <cyril.arnould <at> outlook.com>, 55079 <at> debbugs.gnu.org
> Date: Sat, 23 Apr 2022 16:21:42 -0400
>
> [ Adding Reto to the Cc: ]
>
> > - (cond ((= (preceding-char) vhdl-last-input-event)
> > + (cond ((or (and (integerp vhdl-last-input-event)
> > + (= (preceding-char) vhdl-last-input-event))
> > + (and (eq vhdl-last-input-event 'kp-decimal)
> > + (equal (lookup-key local-function-key-map
> > + (vector vhdl-last-input-event))
> > + [?.])
> > + (= (preceding-char) ?.)))
>
> It does sound pretty kludgey.
> How 'bout just replacing `vhdl-last-input-event` with `?\.`, since the
> function's name says that this is for period anyway (and the subsequent
> `insert-char` inserts a `?\.` regardless of `vhdl-last-input-event`)?
Replacing with '?.' where? everywhere? IOW, making the code assume
that this command can only be bound to '.'? Or did you mean something
else?
My feeling of a kludge was not about that, it was about the way I make
sure that kp-decimal is remapped to '.'. Do we have some nicer, more
general facilities for that?
This bug report was last modified 3 years and 24 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.