diff options
| author | Eli Zaretskii | 2026-01-18 22:15:18 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2026-01-18 22:15:18 +0200 |
| commit | e14e9eb70b8d26bf1dcd8472f52cbef12c70331c (patch) | |
| tree | 842d4f411863b885b69105a6ee5f4d8f35950243 | |
| parent | 3c125e241422a0eab96d2fbc1e3ff41b65d211cf (diff) | |
| download | emacs-e14e9eb70b8d26bf1dcd8472f52cbef12c70331c.tar.gz emacs-e14e9eb70b8d26bf1dcd8472f52cbef12c70331c.zip | |
; 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)
| -rw-r--r-- | test/lisp/textmodes/ispell-tests/ispell-tests.el | 5 |
1 files changed, 5 insertions, 0 deletions
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." | |||
| 779 | (ispell-tests--letopt | 779 | (ispell-tests--letopt |
| 780 | ((ispell-program-name (ispell-tests--some-backend))) | 780 | ((ispell-program-name (ispell-tests--some-backend))) |
| 781 | 781 | ||
| 782 | (ispell-check-version) | ||
| 783 | (if (and ispell-really-aspell | ||
| 784 | (equal ispell-program-name "ispell")) | ||
| 785 | ;; Don't let Aspell hide its true nature. | ||
| 786 | (setq ispell-program-name "aspell")) | ||
| 782 | (let ((test-dictname (ispell-tests--some-valid-dictionary ispell-program-name)) | 787 | (let ((test-dictname (ispell-tests--some-valid-dictionary ispell-program-name)) |
| 783 | (test-extcharmode "~latin3") | 788 | (test-extcharmode "~latin3") |
| 784 | (test-parser "~testparser") | 789 | (test-parser "~testparser") |