* textmodes/ispell.el (ispell-start-process): Make sure original
arg list is properly initialized (Bug#6993, Bug#6994).
+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.
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)))