* textmodes/ispell.el (ispell-find-hunspell-dictionaries):
Always expand affix-file before storing to protect against changed
`default-directory'.
(ispell-print-if-debug): Make sure message is printed at the end
of the debug buffer.
+2013-03-01 Agustín Martín Domingo <agustin.martin@hispalinux.es>
+
+ * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
+ Always expand affix-file before storing to protect against changed
+ `default-directory'.
+ (ispell-print-if-debug): Make sure message is printed at the end
+ of the debug buffer.
+
2013-03-01 Michael Albinus <michael.albinus@gmx.de>
* net/tramp.el (tramp-obsolete-methods): New defconst.
"Print STRING to `ispell-debug-buffer' buffer if enabled."
(if (boundp 'ispell-debug-buffer)
(with-current-buffer ispell-debug-buffer
+ (end-of-buffer)
(insert string))))
(if (and (not (assoc basename ispell-hunspell-dict-paths-alist))
(file-exists-p affix-file))
;; Entry has an associated .aff file and no previous value.
- (progn
+ (let ((affix-file (expand-file-name affix-file)))
(ispell-print-if-debug
(format "++ ispell-fhd: dict-entry:%s name:%s basename:%s affix-file:%s\n"
dict full-name basename affix-file))