changeset 48042:7480394b28f4

(lao-composition-function): Don't use prog1.
author Dave Love <fx@gnu.org>
date Mon, 28 Oct 2002 14:42:53 +0000
parents af717e120019
children 28c480de4424
files lisp/language/lao-util.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/language/lao-util.el	Mon Oct 28 14:40:18 2002 +0000
+++ b/lisp/language/lao-util.el	Mon Oct 28 14:42:53 2002 +0000
@@ -596,7 +596,7 @@
 
 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))