From e14e9eb70b8d26bf1dcd8472f52cbef12c70331c Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sun, 18 Jan 2026 22:15:18 +0200 Subject: [PATCH] ; Fix one of ispell-tests * test/lisp/textmodes/ispell-tests/ispell-tests.el (ispell/ispell-accept-buffer-local-defs/simple): Don't treat Aspell as Ispell even if it pretends to be. (Bug#80165) --- test/lisp/textmodes/ispell-tests/ispell-tests.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/lisp/textmodes/ispell-tests/ispell-tests.el b/test/lisp/textmodes/ispell-tests/ispell-tests.el index 15687ed6f0f..95f88be3b51 100644 --- a/test/lisp/textmodes/ispell-tests/ispell-tests.el +++ b/test/lisp/textmodes/ispell-tests/ispell-tests.el @@ -779,6 +779,11 @@ hunspell. Hence skipping." (ispell-tests--letopt ((ispell-program-name (ispell-tests--some-backend))) + (ispell-check-version) + (if (and ispell-really-aspell + (equal ispell-program-name "ispell")) + ;; Don't let Aspell hide its true nature. + (setq ispell-program-name "aspell")) (let ((test-dictname (ispell-tests--some-valid-dictionary ispell-program-name)) (test-extcharmode "~latin3") (test-parser "~testparser")