]> code.delx.au - gnu-emacs/blobdiff - lisp/ChangeLog
Initial support for hunspell dictionaries auto-detection (Bug#13639)
[gnu-emacs] / lisp / ChangeLog
index c5a902d644286aa7e7328b8d8c997621d4e4758d..66b18651695aff59218416d68dc2c1600e48beb2 100644 (file)
@@ -1,7 +1,68 @@
+2013-02-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
+
+       Initial support for hunspell dictionaries auto-detection (Bug#13639)
+
+       * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
+       Ask hunspell about available and default dictionaries.
+       (ispell-parse-hunspell-affix-file): Extract relevant info from
+       hunspell affix file.
+       (ispell-hunspell-fill-dictionary-entry): Fill non-initialized
+       `ispell-dictionary-alist' entry for given dictionary after info
+       provided by `ispell-parse-hunspell-affix-file'.
+       (ispell-hunspell-dict-paths-alist): New defvar to contain an alist
+       of parsed hunspell dicts and associated affix files.
+       (ispell-hunspell-dictionary-alist): New defvar to contain an alist
+       of parsed hunspell dicts and associated parameters.
+       (ispell-set-spellchecker-params):
+       Call `ispell-find-hunspell-dictionaries' if hunspell and not
+       previously done.
+       (ispell-start-process):
+       Call `ispell-hunspell-fill-dictionary-entry' for current
+       dictionary if it is not initialized.
+
+2013-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * imenu.el: Comment nitpicks.
+
+2013-02-28  Sam Steingold  <sds@gnu.org>
+
+       * vc/diff-mode.el (diff-hunk-file-names): Handle filenames with spaces.
+       See <http://stackoverflow.com/questions/14720205>.
+
+2013-02-28  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
+
+       * net/net-utils.el (net-utils--revert-function): New fun (bug#13831).
+       (net-utils-mode): Use it.
+       (net-utils--revert-cmd): New var.
+       (net-utils-run-simple): Set it, and remove bogus interactive spec.
+       (traceroute): Use net-utils-run-simple.
+
+2013-02-28  Glenn Morris  <rgm@gnu.org>
+
+       * textmodes/paragraphs.el (mark-paragraph): Doc fix.
+
+2013-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * doc-view.el: Preserve h&v scroll across C-c C-c C-c C-c.
+       (doc-view-fallback-mode): Remove overlays here.
+       (doc-view-toggle-display): Instead of here.  Don't throw away
+       image-mode-winprops-alist.
+       (doc-view-goto-page): Don't mess with hscroll.
+
+2013-02-27  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
+
+       * font-lock.el (lisp-font-lock-keywords-2): Fix highlighting of
+       &optional (bug#13819).
+
+2013-02-27  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp-adb.el (tramp-adb-parse-device-names)
+       (tramp-adb-maybe-open-connection): Add timeouts.  (Bug#13299)
+
 2013-02-26  Michael Albinus  <michael.albinus@gmx.de>
 
-       * net/tramp-sh.el (tramp-sh-handle-insert-directory): Add
-       "2>/dev/null" to the ls command, in case "en_US.utf8" is not
+       * net/tramp-sh.el (tramp-sh-handle-insert-directory):
+       Add "2>/dev/null" to the ls command, in case "en_US.utf8" is not
        defined.  POSIX environments fall back to the "C" locale then and
        emit a warning, which shall be suppressed.