From e265849f9e623350de926ae670086fcc623bac2a Mon Sep 17 00:00:00 2001 From: Steve Purcell Date: Fri, 15 Mar 2013 10:39:24 +0000 Subject: [PATCH] Don't require that aspell support the "--sug-mode=ultra" option Fixes #73 --- init-spelling.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/init-spelling.el b/init-spelling.el index 81732c0e2c..0c79bd304d 100644 --- a/init-spelling.el +++ b/init-spelling.el @@ -1,6 +1,4 @@ -(when (executable-find "aspell") - (setq ispell-program-name "aspell" - ispell-extra-args '("--sug-mode=ultra"))) +(require 'ispell) (when (executable-find ispell-program-name) (require 'init-flyspell))