diff options
| author | Miles Bader | 2005-07-22 08:27:27 +0000 |
|---|---|---|
| committer | Miles Bader | 2005-07-22 08:27:27 +0000 |
| commit | 3674ae2f87e47a654524af689ea610ee3edeaca7 (patch) | |
| tree | 58ea33c40c8521a79fb503080b8bb6231ffbf579 /src/ccl.c | |
| parent | 3e03f554f116e04ba860dcde7c6d862939911e16 (diff) | |
| parent | 7929f858f8897f0448771a471f8afc5f244e4bca (diff) | |
| download | emacs-3674ae2f87e47a654524af689ea610ee3edeaca7.tar.gz emacs-3674ae2f87e47a654524af689ea610ee3edeaca7.zip | |
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-71
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 485-492)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 92-94)
- Merge from emacs--cvs-trunk--0
- Update from CVS
Diffstat (limited to 'src/ccl.c')
| -rw-r--r-- | src/ccl.c | 9 |
1 files changed, 5 insertions, 4 deletions
| @@ -2030,7 +2030,7 @@ DEFUN ("ccl-execute-on-string", Fccl_execute_on_string, Sccl_execute_on_string, | |||
| 2030 | 3, 5, 0, | 2030 | 3, 5, 0, |
| 2031 | doc: /* Execute CCL-PROGRAM with initial STATUS on STRING. | 2031 | doc: /* Execute CCL-PROGRAM with initial STATUS on STRING. |
| 2032 | 2032 | ||
| 2033 | CCL-PROGRAM is a symbol registered by register-ccl-program, | 2033 | CCL-PROGRAM is a symbol registered by `register-ccl-program', |
| 2034 | or a compiled code generated by `ccl-compile' (for backward compatibility, | 2034 | or a compiled code generated by `ccl-compile' (for backward compatibility, |
| 2035 | in this case, the execution is slower). | 2035 | in this case, the execution is slower). |
| 2036 | 2036 | ||
| @@ -2051,7 +2051,8 @@ It returns the contents of write buffer as a string, | |||
| 2051 | If the optional 5th arg UNIBYTE-P is non-nil, the returned string | 2051 | If the optional 5th arg UNIBYTE-P is non-nil, the returned string |
| 2052 | is a unibyte string. By default it is a multibyte string. | 2052 | is a unibyte string. By default it is a multibyte string. |
| 2053 | 2053 | ||
| 2054 | See the documentation of `define-ccl-program' for the detail of CCL program. */) | 2054 | See the documentation of `define-ccl-program' for the detail of CCL program. |
| 2055 | usage: (ccl-execute-on-string CCL-PROGRAM STATUS STRING &optional CONTINUE UNIBYTE-P) */) | ||
| 2055 | (ccl_prog, status, str, contin, unibyte_p) | 2056 | (ccl_prog, status, str, contin, unibyte_p) |
| 2056 | Lisp_Object ccl_prog, status, str, contin, unibyte_p; | 2057 | Lisp_Object ccl_prog, status, str, contin, unibyte_p; |
| 2057 | { | 2058 | { |
| @@ -2177,8 +2178,8 @@ See the documentation of `define-ccl-program' for the detail of CCL program. */ | |||
| 2177 | 2178 | ||
| 2178 | DEFUN ("register-ccl-program", Fregister_ccl_program, Sregister_ccl_program, | 2179 | DEFUN ("register-ccl-program", Fregister_ccl_program, Sregister_ccl_program, |
| 2179 | 2, 2, 0, | 2180 | 2, 2, 0, |
| 2180 | doc: /* Register CCL program CCL_PROG as NAME in `ccl-program-table'. | 2181 | doc: /* Register CCL program CCL-PROG as NAME in `ccl-program-table'. |
| 2181 | CCL_PROG should be a compiled CCL program (vector), or nil. | 2182 | CCL-PROG should be a compiled CCL program (vector), or nil. |
| 2182 | If it is nil, just reserve NAME as a CCL program name. | 2183 | If it is nil, just reserve NAME as a CCL program name. |
| 2183 | Return index number of the registered CCL program. */) | 2184 | Return index number of the registered CCL program. */) |
| 2184 | (name, ccl_prog) | 2185 | (name, ccl_prog) |