Mercurial > hg > xemacs-beta
comparison lisp/mule/auto-autoloads.el @ 213:78f53ef88e17 r20-4b5
Import from CVS: tag r20-4b5
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:06:47 +0200 |
parents | e45d5e7c476e |
children | 262b8bb4a523 |
comparison
equal
deleted
inserted
replaced
212:d8688acf4c5b | 213:78f53ef88e17 |
---|---|
17 (autoload 'isearch-fep-quail "isearch-mule" "\ | 17 (autoload 'isearch-fep-quail "isearch-mule" "\ |
18 Read string for incremental search by using quail." t nil) | 18 Read string for incremental search by using quail." t nil) |
19 | 19 |
20 ;;;*** | 20 ;;;*** |
21 | 21 |
22 ;;;### (autoloads (define-ccl-program ccl-dump ccl-compile ccl-program-p) "mule-ccl" "mule/mule-ccl.el") | 22 ;;;### (autoloads (ccl-execute-with-args define-ccl-program declare-ccl-program ccl-dump ccl-compile ccl-program-p) "mule-ccl" "mule/mule-ccl.el") |
23 | 23 |
24 (autoload 'ccl-program-p "mule-ccl" "\ | 24 (autoload 'ccl-program-p "mule-ccl" "\ |
25 T if OBJECT is a valid CCL compiled code." nil nil) | 25 T if OBJECT is a valid CCL compiled code." nil nil) |
26 | 26 |
27 (autoload 'ccl-compile "mule-ccl" "\ | 27 (autoload 'ccl-compile "mule-ccl" "\ |
28 Compile a CCL source program and return the compiled equivalent. | 28 Return a compiled code of CCL-PROGRAM as a vector of integer." nil nil) |
29 The return value will be a vector of integers." nil nil) | |
30 | 29 |
31 (autoload 'ccl-dump "mule-ccl" "\ | 30 (autoload 'ccl-dump "mule-ccl" "\ |
32 Disassemble compiled CCL-CODE." nil nil) | 31 Disassemble compiled CCL-CODE." nil nil) |
33 | 32 |
33 (autoload 'declare-ccl-program "mule-ccl" "\ | |
34 Declare NAME as a name of CCL program. | |
35 | |
36 To compile a CCL program which calls another CCL program not yet | |
37 defined, it must be declared as a CCL program in advance." nil 'macro) | |
38 | |
34 (autoload 'define-ccl-program "mule-ccl" "\ | 39 (autoload 'define-ccl-program "mule-ccl" "\ |
35 Does (defconst NAME (ccl-compile (eval CCL-PROGRAM)) DOC). | 40 Set NAME the compiled code of CCL-PROGRAM. |
36 Byte-compiler expand this macro while compiling." nil 'macro) | 41 CCL-PROGRAM is `eval'ed before being handed to the CCL compiler `ccl-compile'. |
42 The compiled code is a vector of integers." nil 'macro) | |
43 | |
44 (autoload 'ccl-execute-with-args "mule-ccl" "\ | |
45 Execute CCL-PROGRAM with registers initialized by the remaining args. | |
46 The return value is a vector of resulting CCL registeres." nil nil) | |
37 | 47 |
38 ;;;*** | 48 ;;;*** |
39 | 49 |
40 ;;;### (autoloads (dump-coding-systems dump-charsets mule-diag list-fontset describe-fontset list-font describe-font list-coding-system list-coding-system-briefly list-charsets) "mule-debug" "mule/mule-debug.el") | 50 ;;;### (autoloads (dump-coding-systems dump-charsets mule-diag list-fontset describe-fontset list-font describe-font list-coding-system list-coding-system-briefly list-charsets) "mule-debug" "mule/mule-debug.el") |
41 | 51 |