# HG changeset patch # User Richard M. Stallman # Date 777757997 0 # Node ID 7db17ee1ae58bc9fe1558346a678d9af44cc67db # Parent 86065bec6fc9f84d5d1489740d6f6b3edd993353 (ispell-buffer-local-words): Don't treat doublequote specially when splitting the line into words. diff -r 86065bec6fc9 -r 7db17ee1ae58 lisp/textmodes/ispell.el --- a/lisp/textmodes/ispell.el Wed Aug 24 19:51:01 1994 +0000 +++ b/lisp/textmodes/ispell.el Wed Aug 24 19:53:17 1994 +0000 @@ -2096,7 +2096,9 @@ (setq ispell-buffer-local-name (buffer-name))) (let ((end (save-excursion (end-of-line) (point))) string) - (while (re-search-forward " *\\([^ \"]+\\)" end t) + ;; This used to treat " specially, but that loses for some + ;; people using them to fake accented letters. + (while (re-search-forward " *\\([^ ]+\\)" end t) (setq string (buffer-substring (match-beginning 1) (match-end 1))) (process-send-string ispell-process (concat "@" string "\n")))))))