# HG changeset patch # User Karl Heuer # Date 790459208 0 # Node ID 99fa50b971ec8a4cb3c18671f7141f968b664f9f # Parent 05e7543bbb9616d70a3e6ea4edd798e1dd4282d8 (check-ispell-version): Force standard syntax table. diff -r 05e7543bbb96 -r 99fa50b971ec lisp/textmodes/ispell.el --- a/lisp/textmodes/ispell.el Wed Jan 18 19:47:52 1995 +0000 +++ b/lisp/textmodes/ispell.el Wed Jan 18 20:00:08 1995 +0000 @@ -1445,6 +1445,9 @@ (save-excursion (set-buffer (get-buffer-create " *ispell-tmp*")) (erase-buffer) + ;; Avoid obscure bugs caused by users who change the syntax of `.' in + ;; whatever default major mode the user uses, e.g. text mode + (set-syntax-table (standard-syntax-table)) (let ((status (call-process ispell-program-name nil t nil "-v")) (case-fold-search t)) (goto-char (point-min))