]> git.eshelyaron.com Git - emacs.git/commitdiff
Make sure original ispell arg list is initialized in (ispell-start-process).
authorAgustín Martín <agustin.martin@hispalinux.es>
Tue, 7 Sep 2010 18:01:23 +0000 (20:01 +0200)
committerAgustín Martín <agustin.martin@hispalinux.es>
Tue, 7 Sep 2010 18:01:23 +0000 (20:01 +0200)
* textmodes/ispell.el (ispell-start-process): Make sure original
  arg list is properly initialized (Bug#6993, Bug#6994).

lisp/ChangeLog
lisp/textmodes/ispell.el

index c04b420c0875eaa091c33af4f549d7dfae221951..bfe3534eeb7a2f17e4b83a336681c76f66e97526 100644 (file)
@@ -1,3 +1,8 @@
+2010-09-07  Agustín Martín  <agustin.martin@hispalinux.es>
+
+       * textmodes/ispell.el (ispell-start-process): Make sure original
+       arg list is properly initialized (Bug#6993, Bug#6994).
+
 2010-09-06  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
 
        * files.el (directory-abbrev-alist): Use \` as default regexp.
index e30da02df4f2133f44475c1fe5f4e00bdff09abc..0e853cc3ccd0528f2dc0888f314adc251e230939 100644 (file)
@@ -2591,12 +2591,13 @@ Keeps argument list for future ispell invocations for no async support."
                default-directory
              ;; Defend against bad `default-directory'.
              (expand-file-name "~/")))
+        (orig-args (ispell-get-ispell-args))
          (args
           (append
-           (if (and ispell-current-dictionary ; Use specified dictionary.
-                    (not (member "-d" args))) ; Only define if not overridden.
+           (if (and ispell-current-dictionary      ; Not for default dict (nil)
+                    (not (member "-d" orig-args))) ; Only define if not overridden.
                (list "-d" ispell-current-dictionary))
-           (ispell-get-ispell-args)
+           orig-args
            (if ispell-current-personal-dictionary ; Use specified pers dict.
                (list "-p"
                      (expand-file-name ispell-current-personal-dictionary)))