# HG changeset patch # User Dave Love # Date 983470866 0 # Node ID 3030a4b3fa3fa9bb4a36d479e4b3ab65846e3371 # Parent 42097c412119d5aa7012f9256ddf5bc66631735a (Fccl_execute): Doc fix. diff -r 42097c412119 -r 3030a4b3fa3f src/ccl.c --- a/src/ccl.c Thu Mar 01 18:19:09 2001 +0000 +++ b/src/ccl.c Thu Mar 01 18:21:06 2001 +0000 @@ -2009,17 +2009,18 @@ "Execute CCL-PROGRAM with registers initialized by REGISTERS.\n\ \n\ CCL-PROGRAM is a CCL program name (symbol)\n\ -or a compiled code generated by `ccl-compile' (for backward compatibility,\n\ -in this case, the overhead of the execution is bigger than the former case).\n\ +or compiled code generated by `ccl-compile' (for backward compatibility.\n\ +In the latter case, the execution overhead is bigger than in the former).\n\ No I/O commands should appear in CCL-PROGRAM.\n\ \n\ REGISTERS is a vector of [R0 R1 ... R7] where RN is an initial value\n\ - of Nth register.\n\ +for the Nth register.\n\ \n\ As side effect, each element of REGISTERS holds the value of\n\ - corresponding register after the execution.\n\ +the corresponding register after the execution.\n\ \n\ -See the documentation of `define-ccl-program' for the detail of CCL program.") +See the documentation of `define-ccl-program' for a definition of CCL\n\ +programs.") (ccl_prog, reg) Lisp_Object ccl_prog, reg; { @@ -2215,11 +2216,11 @@ /* Register code conversion map. A code conversion map consists of numbers, Qt, Qnil, and Qlambda. - The first element is start code point. - The rest elements are mapped numbers. + The first element is the start code point. + The other elements are mapped numbers. Symbol t means to map to an original number before mapping. Symbol nil means that the corresponding element is empty. - Symbol lambda menas to terminate mapping here. + Symbol lambda means to terminate mapping here. */ DEFUN ("register-code-conversion-map", Fregister_code_conversion_map,