From 37fbc4efcb073af3d9a78e8bc2a2ead24ef9d36a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Bela=C3=AFche?= Date: Fri, 3 Apr 2026 15:01:49 +0200 Subject: [PATCH] Fix ov1 undefined. * test/lisp/erc/erc-scenarios-spelling.el (erc-scenarios-spelling--auto-correct): Fix the undefined `ov1' regestion. --- test/lisp/erc/erc-scenarios-spelling.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/lisp/erc/erc-scenarios-spelling.el b/test/lisp/erc/erc-scenarios-spelling.el index bfd8a004445..8ce10c6e3ab 100644 --- a/test/lisp/erc/erc-scenarios-spelling.el +++ b/test/lisp/erc/erc-scenarios-spelling.el @@ -90,9 +90,9 @@ ;; Depending on the machine, this should become something ;; like: "/AMSG an/dor /gmsg one fsbot two Rob my shoe". - (ert-play-keys "M-TAB")) - (should (equal (overlays-in erc-input-marker (point-max)) - (list ov1))))) + (ert-play-keys "M-TAB") + (should (equal (overlays-in erc-input-marker (point-max)) + (list ov1)))))) (when noninteractive (erc-spelling-mode -1)))))