diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2024-05-05 17:23:29 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2024-05-05 17:23:29 -0400 |
commit | 44036b32ba398cf284320285b60be35874b6eea5 (patch) | |
tree | 019a497e96ecf456af98e561a784bd108499d1f3 /lisp/emacs-lisp | |
parent | 1529ad0315f8d4a96ca07969c1c91c1c50bb6075 (diff) | |
download | emacs-44036b32ba398cf284320285b60be35874b6eea5.tar.gz emacs-44036b32ba398cf284320285b60be35874b6eea5.tar.bz2 emacs-44036b32ba398cf284320285b60be35874b6eea5.zip |
eglot.el: Require `track-changes` unconditionally
* lisp/emacs-lisp/track-changes.el: Bump version.
* lisp/progmodes/eglot.el: Require `track-changes` unconditionally.
(Package-Requires:): Add `track-changes`.
(eglot--track-changes-signal, eglot--signal-textDocument/didChange)
(eglot--managed-mode): Remove non-track-changes alternative code.
(eglot--before-change, eglot--after-change): Delete functions.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/track-changes.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/track-changes.el b/lisp/emacs-lisp/track-changes.el index 6562cc7eb86..2824a70586d 100644 --- a/lisp/emacs-lisp/track-changes.el +++ b/lisp/emacs-lisp/track-changes.el @@ -3,7 +3,7 @@ ;; Copyright (C) 2024 Free Software Foundation, Inc. ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> -;; Version: 1.1 +;; Version: 1.2 ;; Package-Requires: ((emacs "24")) ;; This file is part of GNU Emacs. @@ -74,6 +74,12 @@ ;; id (lambda (beg end before) ;; ..DO THE THING..)))))))) +;;; News: + +;; Since v1.1: +;; +;; - New function `track-changes-inconsistent-state-p'. + ;;; Code: ;; Random ideas: |