GNU bug report logs -
#46670
28.0.50; [feature/native-comp] possible miscompilation affecting lsp-mode
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#46670: 28.0.50; [feature/native-comp] possible miscompilation affecting lsp-mode
which was filed against the emacs package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 46670 <at> debbugs.gnu.org.
--
46670: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=46670
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Mauricio Collares <mauricio <at> collares.org> writes:
> On February 23, 2021 8:26:25 PM GMT-03:00, Andrea Corallo <akrl <at> sdf.org> wrote:
>>Andrea Corallo via "Bug reports for GNU Emacs, the Swiss army knife of
>>text editors" <bug-gnu-emacs <at> gnu.org> writes:
>>
>>Right I've pushed bddd7a2d13 implementing the discussed solution as I'm
>>convinced is more general and future proof.
>>
>>The patch is passing the tests and bootstrapping clean, also is adding a
>>test that should cover this specific bug.
>>
>>Mauricio could you verify it actually solves the lsp-mode issue?
>
> Hi Andrea,
>
> I've verified that the lsp-mode completion issue is fixed. Many, many thanks!
>
> By the way, I just noticed that this is probably the same issue that
> was reported by X L and Óscar Fuentes in emacs-devel ('Completion
> doesn't start after "." Is pressed in go-mode with gopls').
Wonderful! I'm closing this bug then.
Thank you for reporting it
Andrea
[Message part 3 (message/rfc822, inline)]
This was found by Anthony Cowley, who isolated the exact function in
lsp-mode that was misbehaving. I verified that I could reproduce this
findings, and then I removed surrounding context to obtain a minimized
testcase. If this fails to reproduce, it's entirely my fault.
Steps to reproduce:
1) Put this in minimized.el:
;;; -*- lexical-binding: t; -*-
(defun minimized--look-back (s)
(and (equal (buffer-substring-no-properties (- (point) (length s)) (point))
s)
s))
(defun minimized-go ()
(interactive)
(message (minimized--look-back ".")))
(provide 'minimized)
2) Type "." in a buffer and then run minimized-go with the point after
the period. This prints back "." in the minibuffer if the code's
interpreted but not if it's native-compiled.
Note that removing the "lexical-binding: t" line makes the bug not
reproduce. Replacing "(- (point) (length s))" by "(1- (point))" also
makes the bug disappear.
Best,
Mauricio
This bug report was last modified 4 years and 168 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.