# HG changeset patch # User Stefan Monnier # Date 1240945113 0 # Node ID 117774377c3c2f128be441e52a05da7f78c36a0f # Parent 0062b68a76c3ad5bdd4449342551bcb905274815 (quail-vunion): Remove unexplained nreverse. diff -r 0062b68a76c3 -r 117774377c3c lisp/ChangeLog --- a/lisp/ChangeLog Tue Apr 28 16:57:53 2009 +0000 +++ b/lisp/ChangeLog Tue Apr 28 18:58:33 2009 +0000 @@ -1,3 +1,7 @@ +2009-04-28 Stefan Monnier + + * international/quail.el (quail-vunion): Remove unexplained nreverse. + 2009-04-28 Nick Roberts * progmodes/gdb-ui.el (gdb-tooltip-print): Avoid "Non-X frame used" @@ -61,8 +65,8 @@ 2009-04-18 ARISAWA Akihiro - * epa-file.el (epa-file-decode-and-insert): Use - string-to-multibyte instead of set-buffer-multibyte. + * epa-file.el (epa-file-decode-and-insert): + Use string-to-multibyte instead of set-buffer-multibyte. 2009-04-18 Yann Hodique (tiny change) @@ -71,8 +75,8 @@ 2009-04-18 Chong Yidong - * thingatpt.el (thing-at-point-bounds-of-list-at-point): New - function (Bug#3027). + * thingatpt.el (thing-at-point-bounds-of-list-at-point): + New function (Bug#3027). 2009-04-17 Kenichi Handa @@ -82,8 +86,8 @@ * textmodes/flyspell.el (flyspell-correct-word-before-point): Don't create markers. - (tex-mode-flyspell-verify): Don't create markers. Use - line-end-position. + (tex-mode-flyspell-verify): Don't create markers. + Use line-end-position. (sgml-mode-flyspell-verify): Don't create markers. Simplify code using looking-at and looking-back. @@ -119,9 +123,8 @@ 2009-04-15 Dan Nicolaescu - * vc-svn.el (vc-svn-after-dir-status): Fix regexp to allow for - file names with leading spaces. Ignore "." if it appears as a - filename. + * vc-svn.el (vc-svn-after-dir-status): Fix regexp to allow for file + names with leading spaces. Ignore "." if it appears as a filename. 2009-04-14 Juanma Barranquero @@ -149,7 +152,7 @@ * minibuffer.el (completion--try-word-completion): Don't disable `partial-completion' any more. Mark the added char instead. (completion-pcm--string->pattern): Notice chars added by - completion--try-word-completion and treat them specially. + completion--try-word-completion and treat them specially. (bug#2957) 2009-04-13 Jason Rumney diff -r 0062b68a76c3 -r 117774377c3c lisp/international/quail.el --- a/lisp/international/quail.el Tue Apr 28 16:57:53 2009 +0000 +++ b/lisp/international/quail.el Tue Apr 28 18:58:33 2009 +0000 @@ -1091,7 +1091,10 @@ (defun quail-vunion (v1 v2) (apply 'vector - (nreverse (delete-dups (nconc (append v1 ()) (append v2 ())))))) + ;; No idea why this was here, but it seems to cause the + ;; incorrect ordering, according to Nils Anders Danielsson. + ;; (nreverse + (delete-dups (nconc (append v1 ()) (append v2 ()))))) ;; ) ;;;###autoload (defun quail-defrule-internal (key trans map &optional append decode-map props)