aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2019-02-15 13:25:30 -0800
committerGlenn Morris2019-02-15 13:25:30 -0800
commita29c70d29b349712928ef8f12cfb87834df359a4 (patch)
tree9df0fac95982d162f647d117ea28c0f90b787c53 /lisp
parent877eba7249d0d352ff489f1fceb8362c08814494 (diff)
parent3f4b8e9a299f88a8ea11c0ea6a281a34852e541a (diff)
downloademacs-a29c70d29b349712928ef8f12cfb87834df359a4.tar.gz
emacs-a29c70d29b349712928ef8f12cfb87834df359a4.zip
Merge from origin/emacs-26
3f4b8e9 * src/data.c (Fmake_local_variable): Fix bug#34318 b384996 Minor fixes in ELisp manual wrt syntax-table properties 71fc6d2 * admin/notes/emba: New file. 3aaa2d2 Fix Hunspell invocation for discovering its dictionaries # Conflicts: # test/src/data-tests.el
Diffstat (limited to 'lisp')
-rw-r--r--lisp/textmodes/ispell.el9
1 files changed, 8 insertions, 1 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index f3436c6c6c4..cc8ec2652f7 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -1107,12 +1107,19 @@ dictionary from that list was found."
1107 null-device 1107 null-device
1108 t 1108 t
1109 nil 1109 nil
1110 "-D"
1111 ;; Use -a to prevent Hunspell from
1112 ;; trying to initialize its
1113 ;; curses/termcap UI, which causes it
1114 ;; to crash or fail to start in some
1115 ;; MS-Windows ports.
1116 "-a"
1110 ;; Hunspell 1.7.0 (and later?) won't 1117 ;; Hunspell 1.7.0 (and later?) won't
1111 ;; show LOADED DICTIONARY unless 1118 ;; show LOADED DICTIONARY unless
1112 ;; there's at least one file argument 1119 ;; there's at least one file argument
1113 ;; on the command line. So we feed 1120 ;; on the command line. So we feed
1114 ;; it with the null device. 1121 ;; it with the null device.
1115 "-D" null-device) 1122 null-device)
1116 (buffer-string)) 1123 (buffer-string))
1117 "[\n\r]+" 1124 "[\n\r]+"
1118 t)) 1125 t))