aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Porter2021-07-01 13:01:00 +0200
committerLars Ingebrigtsen2021-07-02 12:53:35 +0200
commitbb455d0daad89f5d895232f66c26a7fee6bb9bc8 (patch)
tree08f4d11fca098e5013536af4092153b0ba91e91b
parentf449890508e8d52cc2029a34e55bfdb63c431c4b (diff)
downloademacs-bb455d0daad89f5d895232f66c26a7fee6bb9bc8.tar.gz
emacs-bb455d0daad89f5d895232f66c26a7fee6bb9bc8.zip
Don't pass 'null-device' to 'call-process' in ispell
* lisp/textmodes/ispell.el (ispell-find-hunspell-dictionaries): Replace 'null-device' with nil (bug#49283). This allows running a local ispell process when editing a buffer editing a file via Tramp.
-rw-r--r--lisp/textmodes/ispell.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index ce5a5720854..0a82bf5a2d4 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -1076,7 +1076,7 @@ dictionary from that list was found."
1076 (split-string 1076 (split-string
1077 (with-temp-buffer 1077 (with-temp-buffer
1078 (ispell-call-process ispell-program-name 1078 (ispell-call-process ispell-program-name
1079 null-device 1079 nil
1080 t 1080 t
1081 nil 1081 nil
1082 "-D" 1082 "-D"