aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2001-03-01 18:21:06 +0000
committerDave Love2001-03-01 18:21:06 +0000
commitd617f6df4c9433730060585d8b27ce3d691ade7f (patch)
tree0c0621a664e809622696623e19fd080b470771e6 /src
parent72f737482461bdabaed0612cb5c0d48d52aaed73 (diff)
downloademacs-d617f6df4c9433730060585d8b27ce3d691ade7f.tar.gz
emacs-d617f6df4c9433730060585d8b27ce3d691ade7f.zip
(Fccl_execute): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ccl.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/ccl.c b/src/ccl.c
index 718563d5529..285888f744f 100644
--- a/src/ccl.c
+++ b/src/ccl.c
@@ -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\
2011CCL-PROGRAM is a CCL program name (symbol)\n\ 2011CCL-PROGRAM is a CCL program name (symbol)\n\
2012or a compiled code generated by `ccl-compile' (for backward compatibility,\n\ 2012or compiled code generated by `ccl-compile' (for backward compatibility.\n\
2013in this case, the overhead of the execution is bigger than the former case).\n\ 2013In the latter case, the execution overhead is bigger than in the former).\n\
2014No I/O commands should appear in CCL-PROGRAM.\n\ 2014No I/O commands should appear in CCL-PROGRAM.\n\
2015\n\ 2015\n\
2016REGISTERS is a vector of [R0 R1 ... R7] where RN is an initial value\n\ 2016REGISTERS is a vector of [R0 R1 ... R7] where RN is an initial value\n\
2017 of Nth register.\n\ 2017for the Nth register.\n\
2018\n\ 2018\n\
2019As side effect, each element of REGISTERS holds the value of\n\ 2019As side effect, each element of REGISTERS holds the value of\n\
2020 corresponding register after the execution.\n\ 2020the corresponding register after the execution.\n\
2021\n\ 2021\n\
2022See the documentation of `define-ccl-program' for the detail of CCL program.") 2022See the documentation of `define-ccl-program' for a definition of CCL\n\
2023programs.")
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
2225DEFUN ("register-code-conversion-map", Fregister_code_conversion_map, 2226DEFUN ("register-code-conversion-map", Fregister_code_conversion_map,