Mercurial > emacs
changeset 53087:858cdfcb7635
(coding_restore_composition): Lisp_Object/int mixup.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Mon, 17 Nov 2003 23:23:15 +0000 |
parents | dcef1d5a5ddb |
children | 63a8b584e971 |
files | src/coding.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/coding.c Mon Nov 17 20:01:11 2003 +0000 +++ b/src/coding.c Mon Nov 17 23:23:15 2003 +0000 @@ -5458,8 +5458,8 @@ 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); }