Index: emacs/lisp/textmodes/ispell.el
diff -c emacs/lisp/textmodes/ispell.el:1.173 
emacs/lisp/textmodes/ispell.el:1.174
*** emacs/lisp/textmodes/ispell.el:1.173        Wed Aug 31 10:26:26 2005
--- emacs/lisp/textmodes/ispell.el      Sat Sep 10 15:08:03 2005
***************
*** 814,820 ****
          (goto-char (point-min))
          (let (case-fold-search)
            (setq ispell-really-aspell
!                 (and (search-forward "(but really Aspell " nil t) t))))
        (kill-buffer (current-buffer)))
      result))
  
--- 814,823 ----
          (goto-char (point-min))
          (let (case-fold-search)
            (setq ispell-really-aspell
!               (and (search-forward-regexp "(but really Aspell \\(.*\\))" nil 
t)
!                    (if (version< (match-string 1) "0.60")
!                        (error "aspell version 0.60 or greater is required")
!                      t)))))
        (kill-buffer (current-buffer)))
      result))
  


_______________________________________________
Emacs-diffs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-diffs

Reply via email to