diff options
| author | Dave Love | 2001-03-01 18:21:06 +0000 |
|---|---|---|
| committer | Dave Love | 2001-03-01 18:21:06 +0000 |
| commit | d617f6df4c9433730060585d8b27ce3d691ade7f (patch) | |
| tree | 0c0621a664e809622696623e19fd080b470771e6 /src | |
| parent | 72f737482461bdabaed0612cb5c0d48d52aaed73 (diff) | |
| download | emacs-d617f6df4c9433730060585d8b27ce3d691ade7f.tar.gz emacs-d617f6df4c9433730060585d8b27ce3d691ade7f.zip | |
(Fccl_execute): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ccl.c | 17 |
1 files changed, 9 insertions, 8 deletions
| @@ -2009,17 +2009,18 @@ DEFUN ("ccl-execute", Fccl_execute, Sccl_execute, 2, 2, 0, | |||
| 2009 | "Execute CCL-PROGRAM with registers initialized by REGISTERS.\n\ | 2009 | "Execute CCL-PROGRAM with registers initialized by REGISTERS.\n\ |
| 2010 | \n\ | 2010 | \n\ |
| 2011 | CCL-PROGRAM is a CCL program name (symbol)\n\ | 2011 | CCL-PROGRAM is a CCL program name (symbol)\n\ |
| 2012 | or a compiled code generated by `ccl-compile' (for backward compatibility,\n\ | 2012 | or compiled code generated by `ccl-compile' (for backward compatibility.\n\ |
| 2013 | in this case, the overhead of the execution is bigger than the former case).\n\ | 2013 | In the latter case, the execution overhead is bigger than in the former).\n\ |
| 2014 | No I/O commands should appear in CCL-PROGRAM.\n\ | 2014 | No I/O commands should appear in CCL-PROGRAM.\n\ |
| 2015 | \n\ | 2015 | \n\ |
| 2016 | REGISTERS is a vector of [R0 R1 ... R7] where RN is an initial value\n\ | 2016 | REGISTERS is a vector of [R0 R1 ... R7] where RN is an initial value\n\ |
| 2017 | of Nth register.\n\ | 2017 | for the Nth register.\n\ |
| 2018 | \n\ | 2018 | \n\ |
| 2019 | As side effect, each element of REGISTERS holds the value of\n\ | 2019 | As side effect, each element of REGISTERS holds the value of\n\ |
| 2020 | corresponding register after the execution.\n\ | 2020 | the corresponding register after the execution.\n\ |
| 2021 | \n\ | 2021 | \n\ |
| 2022 | See the documentation of `define-ccl-program' for the detail of CCL program.") | 2022 | See the documentation of `define-ccl-program' for a definition of CCL\n\ |
| 2023 | programs.") | ||
| 2023 | (ccl_prog, reg) | 2024 | (ccl_prog, reg) |
| 2024 | Lisp_Object ccl_prog, reg; | 2025 | Lisp_Object ccl_prog, reg; |
| 2025 | { | 2026 | { |
| @@ -2215,11 +2216,11 @@ Return index number of the registered CCL program.") | |||
| 2215 | 2216 | ||
| 2216 | /* Register code conversion map. | 2217 | /* Register code conversion map. |
| 2217 | A code conversion map consists of numbers, Qt, Qnil, and Qlambda. | 2218 | A code conversion map consists of numbers, Qt, Qnil, and Qlambda. |
| 2218 | The first element is start code point. | 2219 | The first element is the start code point. |
| 2219 | The rest elements are mapped numbers. | 2220 | The other elements are mapped numbers. |
| 2220 | Symbol t means to map to an original number before mapping. | 2221 | Symbol t means to map to an original number before mapping. |
| 2221 | Symbol nil means that the corresponding element is empty. | 2222 | Symbol nil means that the corresponding element is empty. |
| 2222 | Symbol lambda menas to terminate mapping here. | 2223 | Symbol lambda means to terminate mapping here. |
| 2223 | */ | 2224 | */ |
| 2224 | 2225 | ||
| 2225 | DEFUN ("register-code-conversion-map", Fregister_code_conversion_map, | 2226 | DEFUN ("register-code-conversion-map", Fregister_code_conversion_map, |