# HG changeset patch # User Brian Fox # Date 751529903 0 # Node ID 8b896067d6fb0a174ab5b6b208c5b6cb9f0ff129 # Parent a58a505c42d9261bce7d3959b9fae7bba0be8cfb (ispell): If the buffer to spell has no associated file, or, the associated file has a special handler, use a temporary file with the buffer contents to pass to the local ispell process. diff -r a58a505c42d9 -r 8b896067d6fb lisp/textmodes/=ispell4.el --- a/lisp/textmodes/=ispell4.el Mon Oct 25 06:13:41 1993 +0000 +++ b/lisp/textmodes/=ispell4.el Mon Oct 25 06:18:23 1993 +0000 @@ -273,7 +273,8 @@ (delete-temp nil)) (unwind-protect (progn - (cond ((null filename) + (cond ((or (null filename) + (find-file-name-handler buffer-file-name)) (setq filename (make-temp-name "/usr/tmp/ispell")) (setq delete-temp t) (write-region (point-min) (point-max) filename))