369
|
1 ;;; DO NOT MODIFY THIS FILE
|
|
2 (if (featurep 'mule-autoloads) (error "Already loaded"))
|
|
3
|
|
4 ;;;### (autoloads (ccl-execute-with-args define-ccl-program declare-ccl-program ccl-dump ccl-compile ccl-program-p) "mule-ccl" "mule/mule-ccl.el")
|
|
5
|
|
6 (autoload 'ccl-program-p "mule-ccl" "\
|
|
7 T if OBJECT is a valid CCL compiled code." nil nil)
|
|
8
|
|
9 (autoload 'ccl-compile "mule-ccl" "\
|
|
10 Return a compiled code of CCL-PROGRAM as a vector of integer." nil nil)
|
|
11
|
|
12 (autoload 'ccl-dump "mule-ccl" "\
|
|
13 Disassemble compiled CCL-CODE." nil nil)
|
|
14
|
|
15 (autoload 'declare-ccl-program "mule-ccl" "\
|
|
16 Declare NAME as a name of CCL program.
|
|
17
|
|
18 To compile a CCL program which calls another CCL program not yet
|
|
19 defined, it must be declared as a CCL program in advance." nil 'macro)
|
|
20
|
|
21 (autoload 'define-ccl-program "mule-ccl" "\
|
|
22 Set NAME the compiled code of CCL-PROGRAM.
|
|
23 CCL-PROGRAM is `eval'ed before being handed to the CCL compiler `ccl-compile'.
|
|
24 The compiled code is a vector of integers." nil 'macro)
|
|
25
|
|
26 (autoload 'ccl-execute-with-args "mule-ccl" "\
|
|
27 Execute CCL-PROGRAM with registers initialized by the remaining args.
|
|
28 The return value is a vector of resulting CCL registeres." nil nil)
|
|
29
|
|
30 ;;;***
|
|
31
|
|
32 (provide 'mule-autoloads)
|