annotate lisp/mule/auto-autoloads.el @ 404:2f8bb876ab1d r21-2-32

Import from CVS: tag r21-2-32
author cvs
date Mon, 13 Aug 2007 11:16:07 +0200
parents 74fd4e045ea6
children 3d3049ae1304
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
1 ;;; DO NOT MODIFY THIS FILE
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
2 (if (featurep 'mule-autoloads) (error "Already loaded"))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
3
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
4 ;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program declare-ccl-program ccl-dump ccl-compile ccl-program-p) "mule-ccl" "mule/mule-ccl.el")
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
5
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
6 (autoload 'ccl-program-p "mule-ccl" "\
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 398
diff changeset
7 Return t if OBJECT is a valid CCL compiled code." nil nil)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
8
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
9 (autoload 'ccl-compile "mule-ccl" "\
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
10 Return a compiled code of CCL-PROGRAM as a vector of integer." nil nil)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
11
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
12 (autoload 'ccl-dump "mule-ccl" "\
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
13 Disassemble compiled CCL-CODE." nil nil)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
14
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
15 (autoload 'declare-ccl-program "mule-ccl" "\
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
16 Declare NAME as a name of CCL program.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
17
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
18 To compile a CCL program which calls another CCL program not yet
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
19 defined, it must be declared as a CCL program in advance.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
20 Optional arg VECTOR is a compiled CCL code of the CCL program." nil 'macro)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
21
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
22 (autoload 'define-ccl-program "mule-ccl" "\
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
23 Set NAME the compiled code of CCL-PROGRAM.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
24 CCL-PROGRAM is `eval'ed before being handed to the CCL compiler `ccl-compile'.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
25 The compiled code is a vector of integers." nil 'macro)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
26
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
27 (autoload 'check-ccl-program "mule-ccl" "\
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
28 Check validity of CCL-PROGRAM.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
29 If CCL-PROGRAM is a symbol denoting a valid CCL program, return
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
30 CCL-PROGRAM, else return nil.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
31 If CCL-PROGRAM is a vector and optional arg NAME (symbol) is supplied,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
32 register CCL-PROGRAM by name NAME, and return NAME." nil 'macro)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
33
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
34 (autoload 'ccl-execute-with-args "mule-ccl" "\
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
35 Execute CCL-PROGRAM with registers initialized by the remaining args.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
36 The return value is a vector of resulting CCL registers." nil nil)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
37
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
38 ;;;***
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
39
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents:
diff changeset
40 (provide 'mule-autoloads)