aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa1997-05-10 03:37:01 +0000
committerKenichi Handa1997-05-10 03:37:01 +0000
commitcb5373dd8df1c51a380ad2bfa7853a3197d192c1 (patch)
treee7bf228098dfb7184398bbd10fcb29bb9a901382 /src
parent23d2a7f19452f709435f5570e33cd685dcba9578 (diff)
downloademacs-cb5373dd8df1c51a380ad2bfa7853a3197d192c1.tar.gz
emacs-cb5373dd8df1c51a380ad2bfa7853a3197d192c1.zip
(Fccl_execute_on_string): Add 4th optional arg
CONTINUE.
Diffstat (limited to 'src')
-rw-r--r--src/ccl.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/ccl.c b/src/ccl.c
index ff9a5cfa566..03c3924c32b 100644
--- a/src/ccl.c
+++ b/src/ccl.c
@@ -1008,7 +1008,7 @@ As side effect, each element of REGISTER holds the value of\n\
1008} 1008}
1009 1009
1010DEFUN ("ccl-execute-on-string", Fccl_execute_on_string, Sccl_execute_on_string, 1010DEFUN ("ccl-execute-on-string", Fccl_execute_on_string, Sccl_execute_on_string,
1011 3, 3, 0, 1011 3, 4, 0,
1012 "Execute CCL-PROGRAM with initial STATUS on STRING.\n\ 1012 "Execute CCL-PROGRAM with initial STATUS on STRING.\n\
1013CCL-PROGRAM is a compiled code generated by `ccl-compile'.\n\ 1013CCL-PROGRAM is a compiled code generated by `ccl-compile'.\n\
1014Read buffer is set to STRING, and write buffer is allocated automatically.\n\ 1014Read buffer is set to STRING, and write buffer is allocated automatically.\n\
@@ -1018,9 +1018,12 @@ STATUS is a vector of [R0 R1 ... R7 IC], where\n\
1018If R0..R7 are nil, they are initialized to 0.\n\ 1018If R0..R7 are nil, they are initialized to 0.\n\
1019If IC is nil, it is initialized to head of the CCL program.\n\ 1019If IC is nil, it is initialized to head of the CCL program.\n\
1020Returns the contents of write buffer as a string,\n\ 1020Returns the contents of write buffer as a string,\n\
1021 and as side effect, STATUS is updated.") 1021 and as side effect, STATUS is updated.\n\
1022 (ccl_prog, status, str) 1022If optional 4th arg CONTINUE is non-nil, keep IC on read operation\n\
1023 Lisp_Object ccl_prog, status, str; 1023when read buffer is exausted, else, IC is always set to the end of\n\
1024CCL-PROGRAM on exit.")
1025 (ccl_prog, status, str, contin)
1026 Lisp_Object ccl_prog, status, str, contin;
1024{ 1027{
1025 Lisp_Object val; 1028 Lisp_Object val;
1026 struct ccl_program ccl; 1029 struct ccl_program ccl;
@@ -1054,7 +1057,7 @@ Returns the contents of write buffer as a string,\n\
1054 outbuf = (char *) xmalloc (outbufsize); 1057 outbuf = (char *) xmalloc (outbufsize);
1055 if (!outbuf) 1058 if (!outbuf)
1056 error ("Not enough memory"); 1059 error ("Not enough memory");
1057 ccl.last_block = 1; 1060 ccl.last_block = NILP (contin);
1058 produced = ccl_driver (&ccl, XSTRING (str)->data, outbuf, 1061 produced = ccl_driver (&ccl, XSTRING (str)->data, outbuf,
1059 XSTRING (str)->size, outbufsize, (int *)0); 1062 XSTRING (str)->size, outbufsize, (int *)0);
1060 for (i = 0; i < 8; i++) 1063 for (i = 0; i < 8; i++)