Mercurial > hg > xemacs-beta
comparison lisp/mule/auto-autoloads.el @ 398:74fd4e045ea6 r21-2-29
Import from CVS: tag r21-2-29
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:13:30 +0200 |
parents | |
children | 2f8bb876ab1d |
comparison
equal
deleted
inserted
replaced
397:f4aeb21a5bad | 398:74fd4e045ea6 |
---|---|
1 ;;; DO NOT MODIFY THIS FILE | |
2 (if (featurep 'mule-autoloads) (error "Already loaded")) | |
3 | |
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") | |
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. | |
20 Optional arg VECTOR is a compiled CCL code of the CCL program." nil 'macro) | |
21 | |
22 (autoload 'define-ccl-program "mule-ccl" "\ | |
23 Set NAME the compiled code of CCL-PROGRAM. | |
24 CCL-PROGRAM is `eval'ed before being handed to the CCL compiler `ccl-compile'. | |
25 The compiled code is a vector of integers." nil 'macro) | |
26 | |
27 (autoload 'check-ccl-program "mule-ccl" "\ | |
28 Check validity of CCL-PROGRAM. | |
29 If CCL-PROGRAM is a symbol denoting a valid CCL program, return | |
30 CCL-PROGRAM, else return nil. | |
31 If CCL-PROGRAM is a vector and optional arg NAME (symbol) is supplied, | |
32 register CCL-PROGRAM by name NAME, and return NAME." nil 'macro) | |
33 | |
34 (autoload 'ccl-execute-with-args "mule-ccl" "\ | |
35 Execute CCL-PROGRAM with registers initialized by the remaining args. | |
36 The return value is a vector of resulting CCL registers." nil nil) | |
37 | |
38 ;;;*** | |
39 | |
40 (provide 'mule-autoloads) |