aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoão Távora2023-04-07 18:52:06 +0100
committerMichael Albinus2023-04-09 15:36:08 +0200
commit57490fff6ecf3cc1de7d8d833d1b6c895330b762 (patch)
tree5ee47ec0e41090c562335594db53a5b1bc7254d8
parent2a62273f3bfd0240c797e9c294e328e669a24170 (diff)
downloademacs-57490fff6ecf3cc1de7d8d833d1b6c895330b762.tar.gz
emacs-57490fff6ecf3cc1de7d8d833d1b6c895330b762.zip
; Backport: Eglot: fix misplaced parenthesis in last commit to eglot-tests.el
* test/lisp/progmodes/eglot-tests.el (eglot-test-eldoc-after-completions): Fix misplaced parenthesis. (cherry picked from commit 3aedd5c920560fe6456a860a900be40a35e850d2)
-rw-r--r--test/lisp/progmodes/eglot-tests.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/progmodes/eglot-tests.el b/test/lisp/progmodes/eglot-tests.el
index 7489ad53645..984c1bf9916 100644
--- a/test/lisp/progmodes/eglot-tests.el
+++ b/test/lisp/progmodes/eglot-tests.el
@@ -647,7 +647,7 @@ int main() {
647 (completion-at-point) 647 (completion-at-point)
648 (message (buffer-string)) 648 (message (buffer-string))
649 (should (looking-back "fprintf(?")) 649 (should (looking-back "fprintf(?"))
650 (unless (= (char-before) ?\()) (insert "()") (backward-char) 650 (unless (= (char-before) ?\() (insert "()") (backward-char))
651 (eglot--signal-textDocument/didChange) 651 (eglot--signal-textDocument/didChange)
652 (should (string-match "^fprintf" (eglot--tests-force-full-eldoc)))))) 652 (should (string-match "^fprintf" (eglot--tests-force-full-eldoc))))))
653 653