summaryrefslogtreecommitdiff
path: root/lisp/language
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2002-10-28 14:42:53 +0000
committerDave Love <fx@gnu.org>2002-10-28 14:42:53 +0000
commite10fd9a8c8d4dab01812f33c03be0ff3fd362308 (patch)
tree822f7bf53f20d3f8bf4aaf5859309a1f345d7a6a /lisp/language
parent34b5d116a3fed46503f6a8844095c88031e36759 (diff)
downloademacs-e10fd9a8c8d4dab01812f33c03be0ff3fd362308.tar.gz
(lao-composition-function): Don't use prog1.
Diffstat (limited to 'lisp/language')
-rw-r--r--lisp/language/lao-util.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/language/lao-util.el b/lisp/language/lao-util.el
index 1639b1bf78b..0f8d472bdde 100644
--- a/lisp/language/lao-util.el
+++ b/lisp/language/lao-util.el
@@ -596,7 +596,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))