Mercurial > emacs
changeset 20613:e0ed7fc921fa
(Fccl_execute_on_string): Use size_byte.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 09 Jan 1998 23:00:30 +0000 |
parents | 5a0922f8c841 |
children | a4800f9842e4 |
files | src/ccl.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ccl.c Fri Jan 09 22:59:31 1998 +0000 +++ b/src/ccl.c Fri Jan 09 23:00:30 1998 +0000 @@ -1053,13 +1053,13 @@ if (ccl.ic < i && i < ccl.size) ccl.ic = i; } - outbufsize = XSTRING (str)->size * ccl.buf_magnification + 256; + outbufsize = XSTRING (str)->size_byte * ccl.buf_magnification + 256; outbuf = (char *) xmalloc (outbufsize); if (!outbuf) error ("Not enough memory"); ccl.last_block = NILP (contin); produced = ccl_driver (&ccl, XSTRING (str)->data, outbuf, - XSTRING (str)->size, outbufsize, (int *)0); + XSTRING (str)->size_byte, outbufsize, (int *)0); for (i = 0; i < 8; i++) XSET (XVECTOR (status)->contents[i], Lisp_Int, ccl.reg[i]); XSETINT (XVECTOR (status)->contents[8], ccl.ic);