]> git.eshelyaron.com Git - emacs.git/commitdiff
(thai-composition-function): Don't use prog1.
authorDave Love <fx@gnu.org>
Mon, 28 Oct 2002 14:43:51 +0000 (14:43 +0000)
committerDave Love <fx@gnu.org>
Mon, 28 Oct 2002 14:43:51 +0000 (14:43 +0000)
lisp/ChangeLog
lisp/language/thai-util.el

index e310fb66fc88ae1b41e1543ae623dee26e75a0a3..0903cfa8e447204ac82d0a92133660717d9ad73e 100644 (file)
@@ -1,5 +1,12 @@
 2002-10-28  Dave Love  <fx@gnu.org>
 
+       * language/thai-util.el (thai-composition-function): Don't use prog1.
+
+       * language/lao-util.el (lao-composition-function): Don't use prog1.
+
+       * language/european.el (diacritic-composition-function): Modify
+       confused prog1 form.
+
        * international/quail.el (quail-keyboard-layout-alist): Fix
        pc105-uk.
        (quail-keyboard-layout): Customize.
index 35914c2cc5b2430f61bc3e83907316496ce1f460..bbf116485eabedc23604ac5b38161fdf0fbddb48 100644 (file)
@@ -286,7 +286,7 @@ to compose.
 
 The return value is number of composed characters."
   (if (< (1+ from) to)
-      (prog1 (- to from)
+      (progn
        (if string
            (compose-string string from to)
          (compose-region from to))