comparison src/ccl.c @ 30844:947edf38ac6f

(Fccl_program_p): Docstring modified. (Fccl_execute): Likewise. (Fccl_execute_on_string): Likewise.
author Kenichi Handa <handa@m17n.org>
date Wed, 16 Aug 2000 10:49:31 +0000
parents 6d8233c42de8
children e12c02781da9
comparison
equal deleted inserted replaced
30843:57a1453efb15 30844:947edf38ac6f
1783 } 1783 }
1784 1784
1785 #ifdef emacs 1785 #ifdef emacs
1786 1786
1787 DEFUN ("ccl-program-p", Fccl_program_p, Sccl_program_p, 1, 1, 0, 1787 DEFUN ("ccl-program-p", Fccl_program_p, Sccl_program_p, 1, 1, 0,
1788 "Return t if OBJECT is a CCL program name or a compiled CCL program code.") 1788 "Return t if OBJECT is a CCL program name or a compiled CCL program code.
1789 See the documentation of `define-ccl-program' for the detail of CCL program.")
1789 (object) 1790 (object)
1790 Lisp_Object object; 1791 Lisp_Object object;
1791 { 1792 {
1792 Lisp_Object val; 1793 Lisp_Object val;
1793 1794
1815 \n\ 1816 \n\
1816 REGISTERS is a vector of [R0 R1 ... R7] where RN is an initial value\n\ 1817 REGISTERS is a vector of [R0 R1 ... R7] where RN is an initial value\n\
1817 of Nth register.\n\ 1818 of Nth register.\n\
1818 \n\ 1819 \n\
1819 As side effect, each element of REGISTERS holds the value of\n\ 1820 As side effect, each element of REGISTERS holds the value of\n\
1820 corresponding register after the execution.") 1821 corresponding register after the execution.\n\
1822 \n\
1823 See the documentation of `define-ccl-program' for the detail of CCL program.")
1821 (ccl_prog, reg) 1824 (ccl_prog, reg)
1822 Lisp_Object ccl_prog, reg; 1825 Lisp_Object ccl_prog, reg;
1823 { 1826 {
1824 struct ccl_program ccl; 1827 struct ccl_program ccl;
1825 int i; 1828 int i;
1867 CCL-PROGRAM on exit.\n\ 1870 CCL-PROGRAM on exit.\n\
1868 \n\ 1871 \n\
1869 It returns the contents of write buffer as a string,\n\ 1872 It returns the contents of write buffer as a string,\n\
1870 and as side effect, STATUS is updated.\n\ 1873 and as side effect, STATUS is updated.\n\
1871 If the optional 5th arg UNIBYTE-P is non-nil, the returned string\n\ 1874 If the optional 5th arg UNIBYTE-P is non-nil, the returned string\n\
1872 is a unibyte string. By default it is a multibyte string.") 1875 is a unibyte string. By default it is a multibyte string.\n\
1876 \n\
1877 See the documentation of `define-ccl-program' for the detail of CCL program.")
1873 (ccl_prog, status, str, contin, unibyte_p) 1878 (ccl_prog, status, str, contin, unibyte_p)
1874 Lisp_Object ccl_prog, status, str, contin, unibyte_p; 1879 Lisp_Object ccl_prog, status, str, contin, unibyte_p;
1875 { 1880 {
1876 Lisp_Object val; 1881 Lisp_Object val;
1877 struct ccl_program ccl; 1882 struct ccl_program ccl;