emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog international/quail.el


From: Stefan Monnier
Subject: [Emacs-diffs] emacs/lisp ChangeLog international/quail.el
Date: Tue, 28 Apr 2009 18:58:36 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Stefan Monnier <monnier>        09/04/28 18:58:35

Modified files:
        lisp           : ChangeLog 
        lisp/international: quail.el 

Log message:
        (quail-vunion): Remove unexplained nreverse.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.15615&r2=1.15616
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/international/quail.el?cvsroot=emacs&r1=1.173&r2=1.174

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.15615
retrieving revision 1.15616
diff -u -b -r1.15615 -r1.15616
--- ChangeLog   28 Apr 2009 10:35:08 -0000      1.15615
+++ ChangeLog   28 Apr 2009 18:58:33 -0000      1.15616
@@ -1,3 +1,7 @@
+2009-04-28  Stefan Monnier  <address@hidden>
+
+       * international/quail.el (quail-vunion): Remove unexplained nreverse.
+
 2009-04-28  Nick Roberts  <address@hidden>
 
        * progmodes/gdb-ui.el (gdb-tooltip-print): Avoid "Non-X frame used"
@@ -61,8 +65,8 @@
 
 2009-04-18  ARISAWA Akihiro  <address@hidden>
 
-       * 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.
        <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=15259>
 
 2009-04-18  Yann Hodique  <address@hidden>  (tiny change)
@@ -71,8 +75,8 @@
 
 2009-04-18  Chong Yidong  <address@hidden>
 
-       * 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  <address@hidden>
 
@@ -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  <address@hidden>
 
-       * 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  <address@hidden>
 
@@ -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  <address@hidden>
 

Index: international/quail.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/international/quail.el,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -b -r1.173 -r1.174
--- international/quail.el      19 Mar 2009 00:59:54 -0000      1.173
+++ international/quail.el      28 Apr 2009 18:58:35 -0000      1.174
@@ -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)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]