summaryrefslogtreecommitdiff
path: root/src/coding.c
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2003-11-17 23:23:15 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2003-11-17 23:23:15 +0000
commit316d4bf9e2fc5ec04f5187ace82c84eb9c6c934e (patch)
tree67a32dde71b25e404b28c1d5adf2ed166015e71a /src/coding.c
parentb5d9eb343ecbf6d7e7e6aa9afcc007b3c143b62f (diff)
downloademacs-316d4bf9e2fc5ec04f5187ace82c84eb9c6c934e.tar.gz
(coding_restore_composition): Lisp_Object/int mixup.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c
index 897538f3835..910fc8faa68 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -5458,8 +5458,8 @@ coding_restore_composition (coding, obj)
for (j = 0; j < len; j++)
args[j] = make_number (data[4 + j]);
components = (method == COMPOSITION_WITH_ALTCHARS
- ? Fstring (make_number (len), args)
- : Fvector (make_number (len), args));
+ ? Fstring (len, args)
+ : Fvector (len, args));
}
compose_text (data[1], data[2], components, Qnil, obj);
}