GNU bug report logs -
#40338
27.0.60; c-fill-paragraph and after-change-functions
Previous Next
Reported by: Yuan Fu <casouri <at> gmail.com>
Date: Tue, 31 Mar 2020 01:28:02 UTC
Severity: normal
Found in version 27.0.60
Done: Yuan Fu <casouri <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Yuan Fu <casouri <at> gmail.com> writes:
> (defun mytrack-hook (beg end len)
> (if (> len 0)
> ;; delete
> (with-current-buffer trackbuf
> (delete-region beg (+ beg len)))
> ;; insert
> (let ((content (buffer-substring beg end)))
> (with-current-buffer trackbuf
> (goto-char beg)
> (insert content)))))
I'm not very familiar with either eglot or cc-mode, but I can say the
problem in your example lies with mytrack-hook: there can be kinds of
changes other than just pure delete or insert (replace, for example).
It can be fixed like this:
(defun mytrack-hook (beg end len)
(when (> len 0)
;; Delete old text.
(with-current-buffer "trackbuf"
(delete-region beg (+ beg len))))
;; Insert new text.
(let ((content (buffer-substring beg end)))
(with-current-buffer "trackbuf"
(goto-char beg)
(insert content))))
This bug report was last modified 5 years and 52 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.