diff options
| author | Richard M. Stallman | 2005-10-08 19:55:02 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-10-08 19:55:02 +0000 |
| commit | 344066e6253bb656f9f8bc861b6900d7c76f8832 (patch) | |
| tree | 10f2fd413738720cdfde0bf56283134f2b566bdc | |
| parent | d77911362a9c875148f6211c637a6cc9bb000c66 (diff) | |
| download | emacs-344066e6253bb656f9f8bc861b6900d7c76f8832.tar.gz emacs-344066e6253bb656f9f8bc861b6900d7c76f8832.zip | |
(ispell-check-version):
Ignore hyphen, and all that follows, in aspell's version text.
| -rw-r--r-- | lisp/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/textmodes/ispell.el | 1 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 19b509ca292..145c4288b31 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,4 +1,9 @@ | |||
| 1 | 2005-10-07 Jay Belanger <belanger@truman.edu> | 1 | 2005-10-08 Eric Hanchrow <offby1@blarg.net> |
| 2 | |||
| 3 | * textmodes/ispell.el (ispell-check-version): | ||
| 4 | Ignore hyphen, and all that follows, in aspell's version text. | ||
| 5 | |||
| 6 | 2005-10-08 Jay Belanger <belanger@truman.edu> | ||
| 2 | 7 | ||
| 3 | * calc/calc-arith.el (math-known-square-matrixp): New function. | 8 | * calc/calc-arith.el (math-known-square-matrixp): New function. |
| 4 | (math-pow-fancy): Check for matrices before distributing exponent | 9 | (math-pow-fancy): Check for matrices before distributing exponent |
| @@ -97,10 +102,9 @@ | |||
| 97 | * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width): | 102 | * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width): |
| 98 | Typo. | 103 | Typo. |
| 99 | 104 | ||
| 100 | 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org> | 105 | 2005-10-06 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr> (tiny change) |
| 101 | 106 | ||
| 102 | * play/zone.el (zone): Wrap body with save-window-excursion. | 107 | * play/zone.el (zone): Wrap body with save-window-excursion. |
| 103 | Suggested by Michael Cadilhac. | ||
| 104 | 108 | ||
| 105 | 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca> | 109 | 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca> |
| 106 | 110 | ||
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 235df714015..d4764f0b7bd 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -821,6 +821,7 @@ Otherwise returns the library directory name, if that is defined." | |||
| 821 | (let (case-fold-search) | 821 | (let (case-fold-search) |
| 822 | (setq ispell-really-aspell | 822 | (setq ispell-really-aspell |
| 823 | (and (search-forward-regexp | 823 | (and (search-forward-regexp |
| 824 | "(but really Aspell \\(.*?\\)\\(-[0-9]+\\)?)" nil t) | ||
| 824 | "(but really Aspell \\(.*\\))" nil t) | 825 | "(but really Aspell \\(.*\\))" nil t) |
| 825 | (progn | 826 | (progn |
| 826 | (setq ispell-aspell-supports-utf8 | 827 | (setq ispell-aspell-supports-utf8 |