changeset 8613:7db17ee1ae58

(ispell-buffer-local-words): Don't treat doublequote specially when splitting the line into words.
author Richard M. Stallman <rms@gnu.org>
date Wed, 24 Aug 1994 19:53:17 +0000
parents 86065bec6fc9
children 1a7118d40eb1
files lisp/textmodes/ispell.el
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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")))))))