diff options
| author | João Távora | 2023-12-27 06:05:43 -0600 |
|---|---|---|
| committer | João Távora | 2023-12-27 08:02:20 -0600 |
| commit | c5a4366b3f3c6ee4178d954e58eb226441d1d2ee (patch) | |
| tree | bbae5fa1107c261fd6ed425a74ff0c453074aadf /lisp | |
| parent | d4485838e14718f0a4a53004c4ab4fc8d049ca18 (diff) | |
| download | emacs-c5a4366b3f3c6ee4178d954e58eb226441d1d2ee.tar.gz emacs-c5a4366b3f3c6ee4178d954e58eb226441d1d2ee.zip | |
Eglot: bump to 1.16
* etc/EGLOT-NEWS: Update.
* lisp/progmodes/eglot.el (Version): Bump to 1.15
(Package-Requires): Bump jsonrpc depedency to 1.23
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/jsonrpc.el | 4 | ||||
| -rw-r--r-- | lisp/progmodes/eglot.el | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/jsonrpc.el b/lisp/jsonrpc.el index b11fe1a86cc..5ce72eac77e 100644 --- a/lisp/jsonrpc.el +++ b/lisp/jsonrpc.el | |||
| @@ -1003,9 +1003,9 @@ of the API instead.") | |||
| 1003 | (or method "") | 1003 | (or method "") |
| 1004 | (if id (format "[%s]" id) ""))))) | 1004 | (if id (format "[%s]" id) ""))))) |
| 1005 | (msg | 1005 | (msg |
| 1006 | (cond ((eq format 'full) | 1006 | (cond (nil(eq format 'full) |
| 1007 | (format "%s%s\n" preamble (or json log-text))) | 1007 | (format "%s%s\n" preamble (or json log-text))) |
| 1008 | ((eq format 'short) | 1008 | (nil(eq format 'short) |
| 1009 | (format "%s%s\n" preamble (or log-text ""))) | 1009 | (format "%s%s\n" preamble (or log-text ""))) |
| 1010 | (t | 1010 | (t |
| 1011 | (format "%s%s" preamble | 1011 | (format "%s%s" preamble |
diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 8ff2711ea85..1b593439d62 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el | |||
| @@ -2,12 +2,12 @@ | |||
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2023 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2023 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Version: 1.15 | 5 | ;; Version: 1.16 |
| 6 | ;; Author: João Távora <joaotavora@gmail.com> | 6 | ;; Author: João Távora <joaotavora@gmail.com> |
| 7 | ;; Maintainer: João Távora <joaotavora@gmail.com> | 7 | ;; Maintainer: João Távora <joaotavora@gmail.com> |
| 8 | ;; URL: https://github.com/joaotavora/eglot | 8 | ;; URL: https://github.com/joaotavora/eglot |
| 9 | ;; Keywords: convenience, languages | 9 | ;; Keywords: convenience, languages |
| 10 | ;; Package-Requires: ((emacs "26.3") (jsonrpc "1.0.16") (flymake "1.2.1") (project "0.9.8") (xref "1.6.2") (eldoc "1.14.0") (seq "2.23") (external-completion "0.1")) | 10 | ;; Package-Requires: ((emacs "26.3") (jsonrpc "1.0.23") (flymake "1.2.1") (project "0.9.8") (xref "1.6.2") (eldoc "1.14.0") (seq "2.23") (external-completion "0.1")) |
| 11 | 11 | ||
| 12 | ;; This is a GNU ELPA :core package. Avoid adding functionality | 12 | ;; This is a GNU ELPA :core package. Avoid adding functionality |
| 13 | ;; that is not available in the version of Emacs recorded above or any | 13 | ;; that is not available in the version of Emacs recorded above or any |