annotate lisp/auto-autoloads.el @ 523:cd662ad69f40

[xemacs-hg @ 2001-05-09 13:43:49 by ben] regex.c: fix error compiling regexps with back-references in them. xemacs.mak: do not warn about gtk when we're not trying to compile with it. font.el, gtk-widget-accessors.el, widgets-gtk.el, x-font-menu.el: fix byte-compilation warnings. etags.c: temporary fix to avoid crashes with new regex code. PROBLEMS: i swear i already committed this.
author ben
date Wed, 09 May 2001 13:43:58 +0000
parents 39ccc7dd8077
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1 ;;; DO NOT MODIFY THIS FILE
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
2 (if (featurep 'lisp-autoloads) (error "Already loaded"))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4 ;;;### (autoloads nil "abbrev" "lisp/abbrev.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
6 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
7
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
8 ;;;### (autoloads (about-xemacs) "about" "lisp/about.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
9
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
10 (autoload 'about-xemacs "about" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
11 Describe the True Editor and its minions." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
12
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
13 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
14
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
15 ;;;### (autoloads (set-modified-alist modify-alist remove-alist set-alist del-alist put-alist vassoc) "alist" "lisp/alist.el")
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
16
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
17 (autoload 'vassoc "alist" "\
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
18 Search VALIST for a vector whose first element is equal to KEY.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
19 See also `assoc'." nil nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
20
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
21 (autoload 'put-alist "alist" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
22 Modify ALIST to set VALUE to ITEM.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
23 If there is a pair whose car is ITEM, replace its cdr by VALUE.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
24 If there is not such pair, create new pair (ITEM . VALUE) and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
25 return new alist whose car is the new pair and cdr is ALIST.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
26 [tomo's ELIS like function]" nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
27
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
28 (autoload 'del-alist "alist" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
29 If there is a pair whose key is ITEM, delete it from ALIST.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
30 [tomo's ELIS emulating function]" nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
31
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
32 (autoload 'set-alist "alist" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
33 Modify a alist indicated by SYMBOL to set VALUE to ITEM." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
34
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
35 (autoload 'remove-alist "alist" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
36 Remove ITEM from the alist indicated by SYMBOL." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
37
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
38 (autoload 'modify-alist "alist" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
39 Modify alist DEFAULT into alist MODIFIER." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
40
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
41 (autoload 'set-modified-alist "alist" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
42 Modify a value of a symbol SYM into alist MODIFIER.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
43 The symbol SYM should be alist. If it is not bound,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
44 its value regard as nil." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
45
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
46 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
47
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
48 ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-command) "apropos" "lisp/apropos.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
49
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
50 (fset 'command-apropos 'apropos-command)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
51
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
52 (autoload 'apropos-command "apropos" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
53 Shows commands (interactively callable functions) that match REGEXP.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
54 With optional prefix ARG or if `apropos-do-all' is non-nil, also show
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
55 variables." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
56
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
57 (autoload 'apropos "apropos" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
58 Show all bound symbols whose names match REGEXP.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
59 With optional prefix ARG or if `apropos-do-all' is non-nil, also show unbound
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
60 symbols and key bindings, which is a little more time-consuming.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
61 Returns list of symbols and documentation found." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
62
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
63 (autoload 'apropos-value "apropos" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
64 Show all symbols whose value's printed image matches REGEXP.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
65 With optional prefix ARG or if `apropos-do-all' is non-nil, also looks
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
66 at the function and at the names and values of properties.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
67 Returns list of symbols and values found." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
68
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
69 (autoload 'apropos-documentation "apropos" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
70 Show symbols whose documentation contain matches for REGEXP.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
71 With optional prefix ARG or if `apropos-do-all' is non-nil, also use
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
72 documentation that is not stored in the documentation file and show key
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
73 bindings.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
74 Returns list of symbols and documentation found." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
75
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
76 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
77
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
78 ;;;### (autoloads (batch-update-one-directory batch-update-directory batch-update-autoloads update-autoloads-from-directory update-autoloads-here update-file-autoloads generate-file-autoloads) "autoload" "lisp/autoload.el")
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
79
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
80 (autoload 'generate-file-autoloads "autoload" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
81 Insert at point a loaddefs autoload section for FILE.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
82 autoloads are generated for defuns and defmacros in FILE
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
83 marked by `generate-autoload-cookie' (which see).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
84 If FILE is being visited in a buffer, the contents of the buffer
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
85 are used." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
86
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
87 (autoload 'update-file-autoloads "autoload" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
88 Update the autoloads for FILE in `generated-autoload-file'
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
89 \(which FILE might bind in its local variables).
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
90 This function refuses to update autoloads files." t nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
91
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
92 (autoload 'update-autoloads-here "autoload" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
93 Update sections of the current buffer generated by `update-file-autoloads'." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
94
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
95 (autoload 'update-autoloads-from-directory "autoload" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
96 Update `generated-autoload-file' with all the current autoloads from DIR.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
97 This runs `update-file-autoloads' on each .el file in DIR.
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
98 Obsolete autoload entries for files that no longer exist are deleted.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
99 Note that, if this function is called from `batch-update-directory',
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
100 `generated-autoload-file' was rebound in that function." t nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
101
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
102 (autoload 'batch-update-autoloads "autoload" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
103 Update the autoloads for the files or directories on the command line.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
104 Runs `update-file-autoloads' on files and `update-directory-autoloads'
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
105 on directories. Must be used only with -batch, and kills Emacs on completion.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
106 Each file will be processed even if an error occurred previously.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
107 For example, invoke `xemacs -batch -f batch-update-autoloads *.el'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
108 The directory to which the auto-autoloads.el file must be the first parameter
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
109 on the command line." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
110
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
111 (autoload 'batch-update-directory "autoload" "\
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
112 Update the autoloads for the directories on the command line.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
113 Runs `update-file-autoloads' on each file in the given directory, and must
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
114 be used only with -batch." nil nil)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
115
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
116 (autoload 'batch-update-one-directory "autoload" "\
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
117 Update the autoloads for a single directory on the command line.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
118 Runs `update-file-autoloads' on each file in the given directory, and must
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
119 be used only with -batch." nil nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
120
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
121 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
122
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
123 ;;;### (autoloads nil "buff-menu" "lisp/buff-menu.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
124
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
125 (defvar list-buffers-directory nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
126
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
127 (make-variable-buffer-local 'list-buffers-directory)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
128
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
129 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
130
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
131 ;;;### (autoloads (build-report) "build-report" "lisp/build-report.el")
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
132
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
133 (autoload 'build-report "build-report" "\
506
39ccc7dd8077 [xemacs-hg @ 2001-05-05 08:39:59 by ben]
ben
parents: 502
diff changeset
134 Report build information including Installation and make output.
39ccc7dd8077 [xemacs-hg @ 2001-05-05 08:39:59 by ben]
ben
parents: 502
diff changeset
135
39ccc7dd8077 [xemacs-hg @ 2001-05-05 08:39:59 by ben]
ben
parents: 502
diff changeset
136 Prompts for status (usually \"Success\" or \"Failure\"). Then uses
39ccc7dd8077 [xemacs-hg @ 2001-05-05 08:39:59 by ben]
ben
parents: 502
diff changeset
137 `compose-mail' to create a mail message. The Subject header contains
39ccc7dd8077 [xemacs-hg @ 2001-05-05 08:39:59 by ben]
ben
parents: 502
diff changeset
138 status and version information. Point is left at the beginning of the
39ccc7dd8077 [xemacs-hg @ 2001-05-05 08:39:59 by ben]
ben
parents: 502
diff changeset
139 mail text. Add some notes if you like, and send the report.
39ccc7dd8077 [xemacs-hg @ 2001-05-05 08:39:59 by ben]
ben
parents: 502
diff changeset
140
39ccc7dd8077 [xemacs-hg @ 2001-05-05 08:39:59 by ben]
ben
parents: 502
diff changeset
141 Looks for Installation and the make output file (`beta.err' by
39ccc7dd8077 [xemacs-hg @ 2001-05-05 08:39:59 by ben]
ben
parents: 502
diff changeset
142 default, customizable via `build-report-make-output-files') in the
39ccc7dd8077 [xemacs-hg @ 2001-05-05 08:39:59 by ben]
ben
parents: 502
diff changeset
143 build directory of the running XEmacs by default (customizable via
39ccc7dd8077 [xemacs-hg @ 2001-05-05 08:39:59 by ben]
ben
parents: 502
diff changeset
144 `build-report-make-output-dir'). The output from make is filtered
39ccc7dd8077 [xemacs-hg @ 2001-05-05 08:39:59 by ben]
ben
parents: 502
diff changeset
145 through `build-report-keep-regexp' and `build-report-delete-regexp'
39ccc7dd8077 [xemacs-hg @ 2001-05-05 08:39:59 by ben]
ben
parents: 502
diff changeset
146 before including in the message.
39ccc7dd8077 [xemacs-hg @ 2001-05-05 08:39:59 by ben]
ben
parents: 502
diff changeset
147
39ccc7dd8077 [xemacs-hg @ 2001-05-05 08:39:59 by ben]
ben
parents: 502
diff changeset
148 See also `mail-user-agent', `build-report-destination', and
39ccc7dd8077 [xemacs-hg @ 2001-05-05 08:39:59 by ben]
ben
parents: 502
diff changeset
149 `build-report-installation-file'." t nil)
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
150
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
151 ;;;***
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
152
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
153 ;;;### (autoloads (batch-byte-recompile-directory batch-byte-recompile-directory-norecurse batch-byte-compile-one-file batch-byte-compile display-call-tree byte-compile-sexp byte-compile compile-defun byte-compile-buffer byte-compile-and-load-file byte-compile-file byte-recompile-file byte-recompile-directory byte-force-recompile) "bytecomp" "lisp/bytecomp.el")
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
154
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
155 (autoload 'byte-force-recompile "bytecomp" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
156 Recompile every `.el' file in DIRECTORY that already has a `.elc' file.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
157 Files in subdirectories of DIRECTORY are processed also." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
158
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
159 (autoload 'byte-recompile-directory "bytecomp" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
160 Recompile every `.el' file in DIRECTORY that needs recompilation.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
161 This is if a `.elc' file exists but is older than the `.el' file.
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
162 Files in subdirectories of DIRECTORY are also processed unless
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
163 optional argument NORECURSION is non-nil.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
164
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
165 If the `.elc' file does not exist, normally the `.el' file is *not* compiled.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
166 But a prefix argument (optional second arg) means ask user,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
167 for each such `.el' file, whether to compile it. Prefix argument 0 means
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
168 don't ask and compile the file anyway.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
169
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
170 A nonzero prefix argument also means ask about each subdirectory.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
171
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
172 If the fourth optional argument FORCE is non-nil,
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
173 recompile every `.el' file that already has a `.elc' file." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
174
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
175 (autoload 'byte-recompile-file "bytecomp" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
176 Recompile a file of Lisp code named FILENAME if it needs recompilation.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
177 This is if the `.elc' file exists but is older than the `.el' file.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
178
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
179 If the `.elc' file does not exist, normally the `.el' file is *not*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
180 compiled. But a prefix argument (optional second arg) means ask user
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
181 whether to compile it. Prefix argument 0 don't ask and recompile anyway." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
182
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
183 (autoload 'byte-compile-file "bytecomp" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
184 Compile a file of Lisp code named FILENAME into a file of byte code.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
185 The output file's name is made by appending `c' to the end of FILENAME.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
186 With prefix arg (noninteractively: 2nd arg), load the file after compiling." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
187
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
188 (autoload 'byte-compile-and-load-file "bytecomp" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
189 Compile a file of Lisp code named FILENAME into a file of byte code,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
190 and then load it. The output file's name is made by appending \"c\" to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
191 the end of FILENAME." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
192
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
193 (autoload 'byte-compile-buffer "bytecomp" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
194 Byte-compile and evaluate contents of BUFFER (default: the current buffer)." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
195
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
196 (autoload 'compile-defun "bytecomp" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
197 Compile and evaluate the current top-level form.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
198 Print the result in the minibuffer.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
199 With argument, insert value in current buffer after the form." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
200
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
201 (autoload 'byte-compile "bytecomp" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
202 If FORM is a symbol, byte-compile its function definition.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
203 If FORM is a lambda or a macro, byte-compile it as a function." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
204
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
205 (autoload 'byte-compile-sexp "bytecomp" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
206 Compile and return SEXP." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
207
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
208 (autoload 'display-call-tree "bytecomp" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
209 Display a call graph of a specified file.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
210 This lists which functions have been called, what functions called
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
211 them, and what functions they call. The list includes all functions
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
212 whose definitions have been compiled in this Emacs session, as well as
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
213 all functions called by those functions.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
214
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
215 The call graph does not include macros, inline functions, or
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
216 primitives that the byte-code interpreter knows about directly (eq,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
217 cons, etc.).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
218
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
219 The call tree also lists those functions which are not known to be called
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
220 \(that is, to which no calls have been compiled), and which cannot be
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
221 invoked interactively." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
222
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
223 (autoload 'batch-byte-compile "bytecomp" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
224 Run `byte-compile-file' on the files remaining on the command line.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
225 Use this from the command line, with `-batch';
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
226 it won't work in an interactive Emacs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
227 Each file is processed even if an error occurred previously.
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
228 For example, invoke \"xemacs -batch -f batch-byte-compile $emacs/ ~/*.el\"." nil nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
229
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
230 (autoload 'batch-byte-compile-one-file "bytecomp" "\
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
231 Run `byte-compile-file' on a single file remaining on the command line.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
232 Use this from the command line, with `-batch';
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
233 it won't work in an interactive Emacs." nil nil)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
234
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
235 (autoload 'batch-byte-recompile-directory-norecurse "bytecomp" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
236 Same as `batch-byte-recompile-directory' but without recursion." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
237
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
238 (autoload 'batch-byte-recompile-directory "bytecomp" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
239 Runs `byte-recompile-directory' on the dirs remaining on the command line.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
240 Must be used only with `-batch', and kills Emacs on completion.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
241 For example, invoke `xemacs -batch -f batch-byte-recompile-directory .'." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
242
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
243 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
244
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
245 ;;;### (autoloads (compiler-macroexpand define-compiler-macro ignore-file-errors ignore-errors assert check-type typep deftype cl-struct-setf-expander defstruct define-modify-macro callf2 callf letf* letf rotatef shiftf remf cl-do-pop psetf setf get-setf-method defsetf define-setf-method declare the locally multiple-value-setq multiple-value-bind lexical-let* lexical-let symbol-macrolet macrolet labels flet progv psetq do-all-symbols do-symbols dotimes dolist do* do loop return-from return block etypecase typecase ecase case load-time-value eval-when destructuring-bind function* defmacro* defun* cl-compile-time-init) "cl-macs" "lisp/cl-macs.el")
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
246
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
247 (autoload 'cl-compile-time-init "cl-macs" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
248
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
249 (autoload 'defun* "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
250 (defun* NAME ARGLIST [DOCSTRING] BODY...): define NAME as a function.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
251 Like normal `defun', except ARGLIST allows full Common Lisp conventions,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
252 and BODY is implicitly surrounded by (block NAME ...)." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
253
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
254 (autoload 'defmacro* "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
255 (defmacro* NAME ARGLIST [DOCSTRING] BODY...): define NAME as a macro.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
256 Like normal `defmacro', except ARGLIST allows full Common Lisp conventions,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
257 and BODY is implicitly surrounded by (block NAME ...)." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
258
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
259 (autoload 'function* "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
260 (function* SYMBOL-OR-LAMBDA): introduce a function.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
261 Like normal `function', except that if argument is a lambda form, its
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
262 ARGLIST allows full Common Lisp conventions." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
263
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
264 (autoload 'destructuring-bind "cl-macs" nil nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
265
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
266 (autoload 'eval-when "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
267 (eval-when (WHEN...) BODY...): control when BODY is evaluated.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
268 If `compile' is in WHEN, BODY is evaluated when compiled at top-level.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
269 If `load' is in WHEN, BODY is evaluated when loaded after top-level compile.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
270 If `eval' is in WHEN, BODY is evaluated when interpreted or at non-top-level." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
271
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
272 (autoload 'load-time-value "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
273 Like `progn', but evaluates the body at load time.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
274 The result of the body appears to the compiler as a quoted constant." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
275
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
276 (autoload 'case "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
277 (case EXPR CLAUSES...): evals EXPR, chooses from CLAUSES on that value.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
278 Each clause looks like (KEYLIST BODY...). EXPR is evaluated and compared
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
279 against each key in each KEYLIST; the corresponding BODY is evaluated.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
280 If no clause succeeds, case returns nil. A single atom may be used in
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
281 place of a KEYLIST of one atom. A KEYLIST of `t' or `otherwise' is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
282 allowed only in the final clause, and matches if no other keys match.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
283 Key values are compared by `eql'." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
284
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
285 (autoload 'ecase "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
286 (ecase EXPR CLAUSES...): like `case', but error if no case fits.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
287 `otherwise'-clauses are not allowed." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
288
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
289 (autoload 'typecase "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
290 (typecase EXPR CLAUSES...): evals EXPR, chooses from CLAUSES on that value.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
291 Each clause looks like (TYPE BODY...). EXPR is evaluated and, if it
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
292 satisfies TYPE, the corresponding BODY is evaluated. If no clause succeeds,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
293 typecase returns nil. A TYPE of `t' or `otherwise' is allowed only in the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
294 final clause, and matches if no other keys match." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
295
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
296 (autoload 'etypecase "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
297 (etypecase EXPR CLAUSES...): like `typecase', but error if no case fits.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
298 `otherwise'-clauses are not allowed." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
299
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
300 (autoload 'block "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
301 (block NAME BODY...): define a lexically-scoped block named NAME.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
302 NAME may be any symbol. Code inside the BODY forms can call `return-from'
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
303 to jump prematurely out of the block. This differs from `catch' and `throw'
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
304 in two respects: First, the NAME is an unevaluated symbol rather than a
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
305 quoted symbol or other form; and second, NAME is lexically rather than
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
306 dynamically scoped: Only references to it within BODY will work. These
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
307 references may appear inside macro expansions, but not inside functions
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
308 called from BODY." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
309
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
310 (autoload 'return "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
311 (return [RESULT]): return from the block named nil.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
312 This is equivalent to `(return-from nil RESULT)'." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
313
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
314 (autoload 'return-from "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
315 (return-from NAME [RESULT]): return from the block named NAME.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
316 This jumps out to the innermost enclosing `(block NAME ...)' form,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
317 returning RESULT from that form (or nil if RESULT is omitted).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
318 This is compatible with Common Lisp, but note that `defun' and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
319 `defmacro' do not create implicit blocks as they do in Common Lisp." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
320
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
321 (autoload 'loop "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
322 (loop CLAUSE...): The Common Lisp `loop' macro.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
323 Valid clauses are:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
324 for VAR from/upfrom/downfrom NUM to/upto/downto/above/below NUM by NUM,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
325 for VAR in LIST by FUNC, for VAR on LIST by FUNC, for VAR = INIT then EXPR,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
326 for VAR across ARRAY, repeat NUM, with VAR = INIT, while COND, until COND,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
327 always COND, never COND, thereis COND, collect EXPR into VAR,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
328 append EXPR into VAR, nconc EXPR into VAR, sum EXPR into VAR,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
329 count EXPR into VAR, maximize EXPR into VAR, minimize EXPR into VAR,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
330 if COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...],
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
331 unless COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...],
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
332 do EXPRS..., initially EXPRS..., finally EXPRS..., return EXPR,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
333 finally return EXPR, named NAME." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
334
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
335 (autoload 'do "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
336 The Common Lisp `do' loop.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
337 Format is: (do ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)" nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
338
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
339 (autoload 'do* "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
340 The Common Lisp `do*' loop.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
341 Format is: (do* ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)" nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
342
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
343 (autoload 'dolist "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
344 (dolist (VAR LIST [RESULT]) BODY...): loop over a list.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
345 Evaluate BODY with VAR bound to each `car' from LIST, in turn.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
346 Then evaluate RESULT to get return value, default nil." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
347
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
348 (autoload 'dotimes "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
349 (dotimes (VAR COUNT [RESULT]) BODY...): loop a certain number of times.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
350 Evaluate BODY with VAR bound to successive integers from 0, inclusive,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
351 to COUNT, exclusive. Then evaluate RESULT to get return value, default
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
352 nil." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
353
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
354 (autoload 'do-symbols "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
355 (dosymbols (VAR [OBARRAY [RESULT]]) BODY...): loop over all symbols.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
356 Evaluate BODY with VAR bound to each interned symbol, or to each symbol
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
357 from OBARRAY." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
358
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
359 (autoload 'do-all-symbols "cl-macs" nil nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
360
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
361 (autoload 'psetq "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
362 (psetq SYM VAL SYM VAL ...): set SYMs to the values VALs in parallel.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
363 This is like `setq', except that all VAL forms are evaluated (in order)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
364 before assigning any symbols SYM to the corresponding values." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
365
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
366 (autoload 'progv "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
367 (progv SYMBOLS VALUES BODY...): bind SYMBOLS to VALUES dynamically in BODY.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
368 The forms SYMBOLS and VALUES are evaluated, and must evaluate to lists.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
369 Each SYMBOL in the first list is bound to the corresponding VALUE in the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
370 second list (or made unbound if VALUES is shorter than SYMBOLS); then the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
371 BODY forms are executed and their result is returned. This is much like
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
372 a `let' form, except that the list of symbols can be computed at run-time." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
373
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
374 (autoload 'flet "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
375 (flet ((FUNC ARGLIST BODY...) ...) FORM...): make temporary function defns.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
376 This is an analogue of `let' that operates on the function cell of FUNC
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
377 rather than its value cell. The FORMs are evaluated with the specified
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
378 function definitions in place, then the definitions are undone (the FUNCs
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
379 go back to their previous definitions, or lack thereof)." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
380
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
381 (autoload 'labels "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
382 (labels ((FUNC ARGLIST BODY...) ...) FORM...): make temporary func bindings.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
383 This is like `flet', except the bindings are lexical instead of dynamic.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
384 Unlike `flet', this macro is fully compliant with the Common Lisp standard." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
385
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
386 (autoload 'macrolet "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
387 (macrolet ((NAME ARGLIST BODY...) ...) FORM...): make temporary macro defns.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
388 This is like `flet', but for macros instead of functions." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
389
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
390 (autoload 'symbol-macrolet "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
391 (symbol-macrolet ((NAME EXPANSION) ...) FORM...): make symbol macro defns.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
392 Within the body FORMs, references to the variable NAME will be replaced
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
393 by EXPANSION, and (setq NAME ...) will act like (setf EXPANSION ...)." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
394
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
395 (autoload 'lexical-let "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
396 (lexical-let BINDINGS BODY...): like `let', but lexically scoped.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
397 The main visible difference is that lambdas inside BODY will create
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
398 lexical closures as in Common Lisp." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
399
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
400 (autoload 'lexical-let* "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
401 (lexical-let* BINDINGS BODY...): like `let*', but lexically scoped.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
402 The main visible difference is that lambdas inside BODY will create
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
403 lexical closures as in Common Lisp." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
404
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
405 (autoload 'multiple-value-bind "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
406 (multiple-value-bind (SYM SYM...) FORM BODY): collect multiple return values.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
407 FORM must return a list; the BODY is then executed with the first N elements
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
408 of this list bound (`let'-style) to each of the symbols SYM in turn. This
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
409 is analogous to the Common Lisp `multiple-value-bind' macro, using lists to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
410 simulate true multiple return values. For compatibility, (values A B C) is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
411 a synonym for (list A B C)." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
412
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
413 (autoload 'multiple-value-setq "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
414 (multiple-value-setq (SYM SYM...) FORM): collect multiple return values.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
415 FORM must return a list; the first N elements of this list are stored in
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
416 each of the symbols SYM in turn. This is analogous to the Common Lisp
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
417 `multiple-value-setq' macro, using lists to simulate true multiple return
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
418 values. For compatibility, (values A B C) is a synonym for (list A B C)." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
419
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
420 (autoload 'locally "cl-macs" nil nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
421
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
422 (autoload 'the "cl-macs" nil nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
423
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
424 (autoload 'declare "cl-macs" nil nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
425
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
426 (autoload 'define-setf-method "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
427 (define-setf-method NAME ARGLIST BODY...): define a `setf' method.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
428 This method shows how to handle `setf's to places of the form (NAME ARGS...).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
429 The argument forms ARGS are bound according to ARGLIST, as if NAME were
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
430 going to be expanded as a macro, then the BODY forms are executed and must
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
431 return a list of five elements: a temporary-variables list, a value-forms
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
432 list, a store-variables list (of length one), a store-form, and an access-
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
433 form. See `defsetf' for a simpler way to define most setf-methods." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
434
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
435 (autoload 'defsetf "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
436 (defsetf NAME FUNC): define a `setf' method.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
437 This macro is an easy-to-use substitute for `define-setf-method' that works
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
438 well for simple place forms. In the simple `defsetf' form, `setf's of
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
439 the form (setf (NAME ARGS...) VAL) are transformed to function or macro
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
440 calls of the form (FUNC ARGS... VAL). Example: (defsetf aref aset).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
441 Alternate form: (defsetf NAME ARGLIST (STORE) BODY...).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
442 Here, the above `setf' call is expanded by binding the argument forms ARGS
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
443 according to ARGLIST, binding the value form VAL to STORE, then executing
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
444 BODY, which must return a Lisp form that does the necessary `setf' operation.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
445 Actually, ARGLIST and STORE may be bound to temporary variables which are
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
446 introduced automatically to preserve proper execution order of the arguments.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
447 Example: (defsetf nth (n x) (v) (list 'setcar (list 'nthcdr n x) v))." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
448
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
449 (autoload 'get-setf-method "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
450 Return a list of five values describing the setf-method for PLACE.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
451 PLACE may be any Lisp form which can appear as the PLACE argument to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
452 a macro like `setf' or `incf'." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
453
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
454 (autoload 'setf "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
455 (setf PLACE VAL PLACE VAL ...): set each PLACE to the value of its VAL.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
456 This is a generalized version of `setq'; the PLACEs may be symbolic
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
457 references such as (car x) or (aref x i), as well as plain symbols.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
458 For example, (setf (cadar x) y) is equivalent to (setcar (cdar x) y).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
459 The return value is the last VAL in the list." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
460
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
461 (autoload 'psetf "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
462 (psetf PLACE VAL PLACE VAL ...): set PLACEs to the values VALs in parallel.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
463 This is like `setf', except that all VAL forms are evaluated (in order)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
464 before assigning any PLACEs to the corresponding values." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
465
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
466 (autoload 'cl-do-pop "cl-macs" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
467
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
468 (autoload 'remf "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
469 (remf PLACE TAG): remove TAG from property list PLACE.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
470 PLACE may be a symbol, or any generalized variable allowed by `setf'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
471 The form returns true if TAG was found and removed, nil otherwise." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
472
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
473 (autoload 'shiftf "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
474 (shiftf PLACE PLACE... VAL): shift left among PLACEs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
475 Example: (shiftf A B C) sets A to B, B to C, and returns the old A.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
476 Each PLACE may be a symbol, or any generalized variable allowed by `setf'." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
477
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
478 (autoload 'rotatef "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
479 (rotatef PLACE...): rotate left among PLACEs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
480 Example: (rotatef A B C) sets A to B, B to C, and C to A. It returns nil.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
481 Each PLACE may be a symbol, or any generalized variable allowed by `setf'." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
482
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
483 (autoload 'letf "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
484 (letf ((PLACE VALUE) ...) BODY...): temporarily bind to PLACEs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
485 This is the analogue of `let', but with generalized variables (in the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
486 sense of `setf') for the PLACEs. Each PLACE is set to the corresponding
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
487 VALUE, then the BODY forms are executed. On exit, either normally or
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
488 because of a `throw' or error, the PLACEs are set back to their original
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
489 values. Note that this macro is *not* available in Common Lisp.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
490 As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)',
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
491 the PLACE is not modified before executing BODY." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
492
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
493 (autoload 'letf* "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
494 (letf* ((PLACE VALUE) ...) BODY...): temporarily bind to PLACEs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
495 This is the analogue of `let*', but with generalized variables (in the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
496 sense of `setf') for the PLACEs. Each PLACE is set to the corresponding
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
497 VALUE, then the BODY forms are executed. On exit, either normally or
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
498 because of a `throw' or error, the PLACEs are set back to their original
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
499 values. Note that this macro is *not* available in Common Lisp.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
500 As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)',
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
501 the PLACE is not modified before executing BODY." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
502
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
503 (autoload 'callf "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
504 (callf FUNC PLACE ARGS...): set PLACE to (FUNC PLACE ARGS...).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
505 FUNC should be an unquoted function name. PLACE may be a symbol,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
506 or any generalized variable allowed by `setf'." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
507
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
508 (autoload 'callf2 "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
509 (callf2 FUNC ARG1 PLACE ARGS...): set PLACE to (FUNC ARG1 PLACE ARGS...).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
510 Like `callf', but PLACE is the second argument of FUNC, not the first." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
511
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
512 (autoload 'define-modify-macro "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
513 (define-modify-macro NAME ARGLIST FUNC): define a `setf'-like modify macro.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
514 If NAME is called, it combines its PLACE argument with the other arguments
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
515 from ARGLIST using FUNC: (define-modify-macro incf (&optional (n 1)) +)" nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
516
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
517 (autoload 'defstruct "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
518 (defstruct (NAME OPTIONS...) (SLOT SLOT-OPTS...)...): define a struct type.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
519 This macro defines a new Lisp data type called NAME, which contains data
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
520 stored in SLOTs. This defines a `make-NAME' constructor, a `copy-NAME'
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
521 copier, a `NAME-p' predicate, and setf-able `NAME-SLOT' accessors." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
522
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
523 (autoload 'cl-struct-setf-expander "cl-macs" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
524
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
525 (autoload 'deftype "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
526 (deftype NAME ARGLIST BODY...): define NAME as a new data type.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
527 The type name can then be used in `typecase', `check-type', etc." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
528
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
529 (autoload 'typep "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
530 Check that OBJECT is of type TYPE.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
531 TYPE is a Common Lisp-style type specifier." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
532
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
533 (autoload 'check-type "cl-macs" "\
452
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 444
diff changeset
534 Verify that PLACE is of type TYPE; signal a continuable error if not.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
535 STRING is an optional description of the desired type." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
536
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
537 (autoload 'assert "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
538 Verify that FORM returns non-nil; signal an error if not.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
539 Second arg SHOW-ARGS means to include arguments of FORM in message.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
540 Other args STRING and ARGS... are arguments to be passed to `error'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
541 They are not evaluated unless the assertion fails. If STRING is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
542 omitted, a default message listing FORM itself is used." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
543
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
544 (autoload 'ignore-errors "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
545 Execute FORMS; if an error occurs, return nil.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
546 Otherwise, return result of last FORM." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
547
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
548 (autoload 'ignore-file-errors "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
549 Execute FORMS; if an error of type `file-error' occurs, return nil.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
550 Otherwise, return result of last FORM." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
551
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
552 (autoload 'define-compiler-macro "cl-macs" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
553 (define-compiler-macro FUNC ARGLIST BODY...): Define a compiler-only macro.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
554 This is like `defmacro', but macro expansion occurs only if the call to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
555 FUNC is compiled (i.e., not interpreted). Compiler macros should be used
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
556 for optimizing the way calls to FUNC are compiled; the form returned by
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
557 BODY should do the same thing as a call to the normal function called
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
558 FUNC, though possibly more efficiently. Note that, like regular macros,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
559 compiler macros are expanded repeatedly until no further expansions are
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
560 possible. Unlike regular macros, BODY can decide to \"punt\" and leave the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
561 original function call alone by declaring an initial `&whole foo' parameter
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
562 and then returning foo." nil 'macro)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
563
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
564 (autoload 'compiler-macroexpand "cl-macs" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
565
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
566 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
567
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
568 ;;;### (autoloads (config-value config-value-hash-table) "config" "lisp/config.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
569
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
570 (autoload 'config-value-hash-table "config" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
571 Return hash table of configuration parameters and their values." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
572
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
573 (autoload 'config-value "config" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
574 Return the value of the configuration parameter CONFIG_SYMBOL." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
575
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
576 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
577
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
578 ;;;### (autoloads (Custom-make-dependencies) "cus-dep" "lisp/cus-dep.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
579
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
580 (autoload 'Custom-make-dependencies "cus-dep" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
581 Extract custom dependencies from .el files in SUBDIRS.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
582 SUBDIRS is a list of directories. If it is nil, the command-line
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
583 arguments are used. If it is a string, only that directory is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
584 processed. This function is especially useful in batch mode.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
585
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
586 Batch usage: xemacs -batch -l cus-dep.el -f Custom-make-dependencies DIRS" t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
587
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
588 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
589
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
590 ;;;### (autoloads (custom-migrate-custom-file customize-menu-create custom-menu-create custom-save-all customize-save-customized customize-browse custom-buffer-create-other-window custom-buffer-create customize-apropos-groups customize-apropos-faces customize-apropos-options customize-apropos customize-saved customize-customized customize-face-other-window customize-face customize-option-other-window customize-changed-options customize-variable customize-other-window customize customize-save-variable customize-set-variable customize-set-value) "cus-edit" "lisp/cus-edit.el")
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
591
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
592 (autoload 'customize-set-value "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
593 Set VARIABLE to VALUE. VALUE is a Lisp object.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
594
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
595 If VARIABLE has a `variable-interactive' property, that is used as if
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
596 it were the arg to `interactive' (which see) to interactively read the value.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
597
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
598 If VARIABLE has a `custom-type' property, it must be a widget and the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
599 `:prompt-value' property of that widget will be used for reading the value.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
600
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
601 If given a prefix (or a COMMENT argument), also prompt for a comment." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
602
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
603 (autoload 'customize-set-variable "cus-edit" "\
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
604 Set the default for VARIABLE to VALUE. VALUE is any Lisp object.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
605
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
606 If VARIABLE has a `custom-set' property, that is used for setting
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
607 VARIABLE, otherwise `set-default' is used.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
608
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
609 The `customized-value' property of the VARIABLE will be set to a list
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
610 with a quoted VALUE as its sole list member.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
611
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
612 If VARIABLE has a `variable-interactive' property, that is used as if
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
613 it were the arg to `interactive' (which see) to interactively read the value.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
614
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
615 If VARIABLE has a `custom-type' property, it must be a widget and the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
616 `:prompt-value' property of that widget will be used for reading the value.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
617
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
618 If given a prefix (or a COMMENT argument), also prompt for a comment." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
619
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
620 (autoload 'customize-save-variable "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
621 Set the default for VARIABLE to VALUE, and save it for future sessions.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
622 If VARIABLE has a `custom-set' property, that is used for setting
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
623 VARIABLE, otherwise `set-default' is used.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
624
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
625 The `customized-value' property of the VARIABLE will be set to a list
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
626 with a quoted VALUE as its sole list member.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
627
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
628 If VARIABLE has a `variable-interactive' property, that is used as if
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
629 it were the arg to `interactive' (which see) to interactively read the value.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
630
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
631 If VARIABLE has a `custom-type' property, it must be a widget and the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
632 `:prompt-value' property of that widget will be used for reading the value.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
633
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
634 If given a prefix (or a COMMENT argument), also prompt for a comment." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
635
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
636 (autoload 'customize "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
637 Select a customization buffer which you can use to set user options.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
638 User options are structured into \"groups\".
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
639 The default group is `Emacs'." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
640
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
641 (defalias 'customize-group 'customize)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
642
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
643 (autoload 'customize-other-window "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
644 Customize SYMBOL, which must be a customization group." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
645
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
646 (defalias 'customize-group-other-window 'customize-other-window)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
647
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
648 (defalias 'customize-option 'customize-variable)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
649
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
650 (autoload 'customize-variable "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
651 Customize SYMBOL, which must be a user option variable." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
652
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
653 (autoload 'customize-changed-options "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
654 Customize all user option variables whose default values changed recently.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
655 This means, in other words, variables defined with a `:version' keyword." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
656
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
657 (defalias 'customize-variable-other-window 'customize-option-other-window)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
658
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
659 (autoload 'customize-option-other-window "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
660 Customize SYMBOL, which must be a user option variable.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
661 Show the buffer in another window, but don't select it." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
662
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
663 (autoload 'customize-face "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
664 Customize SYMBOL, which should be a face name or nil.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
665 If SYMBOL is nil, customize all faces." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
666
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
667 (autoload 'customize-face-other-window "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
668 Show customization buffer for FACE in other window." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
669
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
670 (autoload 'customize-customized "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
671 Customize all user options set since the last save in this session." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
672
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
673 (autoload 'customize-saved "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
674 Customize all already saved user options." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
675
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
676 (autoload 'customize-apropos "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
677 Customize all user options matching REGEXP.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
678 If ALL is `options', include only options.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
679 If ALL is `faces', include only faces.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
680 If ALL is `groups', include only groups.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
681 If ALL is t (interactively, with prefix arg), include options which are not
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
682 user-settable, as well as faces and groups." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
683
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
684 (autoload 'customize-apropos-options "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
685 Customize all user options matching REGEXP.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
686 With prefix arg, include options which are not user-settable." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
687
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
688 (autoload 'customize-apropos-faces "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
689 Customize all user faces matching REGEXP." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
690
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
691 (autoload 'customize-apropos-groups "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
692 Customize all user groups matching REGEXP." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
693
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
694 (autoload 'custom-buffer-create "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
695 Create a buffer containing OPTIONS.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
696 Optional NAME is the name of the buffer.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
697 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
698 SYMBOL is a customization option, and WIDGET is a widget for editing
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
699 that option." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
700
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
701 (autoload 'custom-buffer-create-other-window "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
702 Create a buffer containing OPTIONS.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
703 Optional NAME is the name of the buffer.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
704 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
705 SYMBOL is a customization option, and WIDGET is a widget for editing
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
706 that option." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
707
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
708 (autoload 'customize-browse "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
709 Create a tree browser for the customize hierarchy." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
710
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
711 (autoload 'customize-save-customized "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
712 Save all user options which have been set in this session." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
713
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
714 (autoload 'custom-save-all "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
715 Save all customizations in `custom-file'." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
716
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
717 (autoload 'custom-menu-create "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
718 Create menu for customization group SYMBOL.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
719 The menu is in a format applicable to `easy-menu-define'." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
720
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
721 (autoload 'customize-menu-create "cus-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
722 Return a customize menu for customization group SYMBOL.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
723 If optional NAME is given, use that as the name of the menu.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
724 Otherwise the menu will be named `Customize'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
725 The format is suitable for use with `easy-menu-define'." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
726
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
727 (autoload 'custom-migrate-custom-file "cus-edit" "\
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
728 Migrate custom file from home directory." nil nil)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
729
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
730 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
731
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
732 ;;;### (autoloads (custom-reset-faces custom-theme-reset-faces custom-theme-face-value custom-theme-set-faces custom-set-faces custom-set-face-update-spec custom-declare-face) "cus-face" "lisp/cus-face.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
733
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
734 (autoload 'custom-declare-face "cus-face" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
735 Like `defface', but FACE is evaluated as a normal argument." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
736
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
737 (autoload 'custom-set-face-update-spec "cus-face" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
738 Customize the FACE for display types matching DISPLAY, merging
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
739 in the new items from PLIST." nil nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
740
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
741 (autoload 'custom-set-faces "cus-face" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
742 Initialize faces according to user preferences.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
743 This asociates the setting with the USER theme.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
744 The arguments should be a list where each entry has the form:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
745
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
746 (FACE SPEC [NOW [COMMENT]])
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
747
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
748 SPEC will be stored as the saved value for FACE. If NOW is present
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
749 and non-nil, FACE will also be created according to SPEC.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
750 COMMENT is a string comment about FACE.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
751
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
752 See `defface' for the format of SPEC." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
753
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
754 (autoload 'custom-theme-set-faces "cus-face" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
755 Initialize faces according to settings specified by args.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
756 Records the settings as belonging to THEME.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
757
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
758 See `custom-set-faces' for a description of the arguments ARGS." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
759
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
760 (autoload 'custom-theme-face-value "cus-face" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
761 Return spec of FACE in THEME if the THEME modifies the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
762 FACE. Nil otherwise." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
763
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
764 (autoload 'custom-theme-reset-faces "cus-face" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
765
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
766 (autoload 'custom-reset-faces "cus-face" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
767 Reset the value of the face to values previously defined.
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
768 Associate this setting with the 'user' theme.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
769
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
770 ARGS is defined as for `custom-theme-reset-faces'." nil nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
771
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
772 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
773
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
774 ;;;### (autoloads (make-custom-file-name) "cus-file" "lisp/cus-file.el")
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
775
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
776 (defconst custom-file-base "custom.el" "\
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
777 Base of file name for storing customization information.")
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
778
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
779 (defvar custom-file nil "\
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
780 File used for storing customization information.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
781 If you change this from the default you need to
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
782 explicitly load that file for the settings to take effect.")
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
783
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
784 (autoload 'make-custom-file-name "cus-file" "\
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
785 Construct the default custom file name from the init file name.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
786 If FORCE-NEW is non-nil, force post-migration location." nil nil)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
787
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
788 ;;;***
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
789
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
790 ;;;### (autoloads (disassemble) "disass" "lisp/disass.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
791
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
792 (autoload 'disassemble "disass" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
793 Print disassembled code for OBJECT in (optional) BUFFER.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
794 OBJECT can be a symbol defined as a function, or a function itself
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
795 \(a lambda expression or a compiled-function object).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
796 If OBJECT is not already compiled, we compile it, but do not
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
797 redefine OBJECT if it is a symbol." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
798
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
799 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
800
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
801 ;;;### (autoloads (standard-display-european standard-display-underline standard-display-graphic standard-display-g1 standard-display-ascii standard-display-default standard-display-8bit make-display-table describe-current-display-table) "disp-table" "lisp/disp-table.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
802
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
803 (autoload 'describe-current-display-table "disp-table" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
804 Describe the display table in use in the selected window and buffer." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
805
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
806 (autoload 'make-display-table "disp-table" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
807 Return a new, empty display table." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
808
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
809 (autoload 'standard-display-8bit "disp-table" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
810 Display characters in the range L to H literally." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
811
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
812 (autoload 'standard-display-default "disp-table" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
813 Display characters in the range L to H using the default notation." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
814
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
815 (autoload 'standard-display-ascii "disp-table" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
816 Display character C using printable string S." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
817
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
818 (autoload 'standard-display-g1 "disp-table" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
819 Display character C as character SC in the g1 character set.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
820 This function assumes that your terminal uses the SO/SI characters;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
821 it is meaningless for an X frame." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
822
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
823 (autoload 'standard-display-graphic "disp-table" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
824 Display character C as character GC in graphics character set.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
825 This function assumes VT100-compatible escapes; it is meaningless for an
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
826 X frame." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
827
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
828 (autoload 'standard-display-underline "disp-table" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
829 Display character C as character UC plus underlining." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
830
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
831 (autoload 'standard-display-european "disp-table" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
832 Toggle display of European characters encoded with ISO 8859.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
833 When enabled, characters in the range of 160 to 255 display not
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
834 as octal escapes, but as accented characters.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
835 With prefix argument, enable European character display iff arg is positive." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
836
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
837 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
838
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
839 ;;;### (autoloads nil "easymenu" "lisp/easymenu.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
840
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
841 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
842
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
843 ;;;### (autoloads (pop-tag-mark tags-apropos list-tags tags-query-replace tags-search tags-loop-continue next-file tag-complete-symbol find-tag-other-window find-tag find-tag-at-point visit-tags-table) "etags" "lisp/etags.el")
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
844
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
845 (autoload 'visit-tags-table "etags" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
846 Tell tags commands to use tags table file FILE when all else fails.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
847 FILE should be the name of a file created with the `etags' program.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
848 A directory name is ok too; it means file TAGS in that directory." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
849
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
850 (autoload 'find-tag-at-point "etags" "\
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
851 *Find tag whose name contains TAGNAME.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
852 Identical to `find-tag' but does not prompt for tag when called interactively;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
853 instead, uses tag around or before point." t nil)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
854
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
855 (autoload 'find-tag "etags" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
856 *Find tag whose name contains TAGNAME.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
857 Selects the buffer that the tag is contained in
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
858 and puts point at its definition.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
859 If TAGNAME is a null string, the expression in the buffer
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
860 around or before point is used as the tag name.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
861 If called interactively with a numeric argument, searches for the next tag
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
862 in the tag table that matches the tagname used in the previous find-tag.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
863 If second arg OTHER-WINDOW is non-nil, uses another window to display
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
864 the tag.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
865
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
866 This version of this function supports multiple active tags tables,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
867 and completion.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
868
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
869 Variables of note:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
870
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
871 tag-table-alist controls which tables apply to which buffers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
872 tags-file-name a default tags table
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
873 tags-build-completion-table controls completion behavior
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
874 buffer-tag-table another way of specifying a buffer-local table
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
875 make-tags-files-invisible whether tags tables should be very hidden
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
876 tag-mark-stack-max how many tags-based hops to remember" t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
877
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
878 (autoload 'find-tag-other-window "etags" "\
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
879 *Find tag whose name contains TAGNAME, in another window.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
880 Selects the buffer that the tag is contained in in another window
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
881 and puts point at its definition.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
882 If TAGNAME is a null string, the expression in the buffer
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
883 around or before point is used as the tag name.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
884 If second arg NEXT is non-nil (interactively, with prefix arg),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
885 searches for the next tag in the tag table
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
886 that matches the tagname used in the previous find-tag.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
887
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
888 This version of this function supports multiple active tags tables,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
889 and completion.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
890
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
891 Variables of note:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
892
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
893 tag-table-alist controls which tables apply to which buffers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
894 tags-file-name a default tags table
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
895 tags-build-completion-table controls completion behavior
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
896 buffer-tag-table another way of specifying a buffer-local table
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
897 make-tags-files-invisible whether tags tables should be very hidden
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
898 tag-mark-stack-max how many tags-based hops to remember" t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
899
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
900 (autoload 'tag-complete-symbol "etags" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
901 The function used to do tags-completion (using 'tag-completion-predicate)." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
902
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
903 (autoload 'next-file "etags" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
904 Select next file among files in current tag table(s).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
905
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
906 A first argument of t (prefix arg, if interactive) initializes to the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
907 beginning of the list of files in the (first) tags table. If the argument
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
908 is neither nil nor t, it is evalled to initialize the list of files.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
909
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
910 Non-nil second argument NOVISIT means use a temporary buffer
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
911 to save time and avoid uninteresting warnings.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
912
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
913 Value is nil if the file was already visited;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
914 if the file was newly read in, the value is the filename." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
915
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
916 (autoload 'tags-loop-continue "etags" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
917 Continue last \\[tags-search] or \\[tags-query-replace] command.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
918 Used noninteractively with non-nil argument to begin such a command (the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
919 argument is passed to `next-file', which see).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
920 Two variables control the processing we do on each file:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
921 the value of `tags-loop-scan' is a form to be executed on each file
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
922 to see if it is interesting (it returns non-nil if so)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
923 and `tags-loop-operate' is a form to execute to operate on an interesting file
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
924 If the latter returns non-nil, we exit; otherwise we scan the next file." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
925
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
926 (autoload 'tags-search "etags" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
927 Search through all files listed in tags table for match for REGEXP.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
928 Stops when a match is found.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
929 To continue searching for next match, use command \\[tags-loop-continue].
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
930
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
931 See documentation of variable `tag-table-alist'." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
932
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
933 (autoload 'tags-query-replace "etags" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
934 Query-replace-regexp FROM with TO through all files listed in tags table.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
935 Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
936 If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
937 with the command \\[tags-loop-continue].
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
938
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
939 See documentation of variable `tag-table-alist'." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
940
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
941 (autoload 'list-tags "etags" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
942 Display list of tags in FILE." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
943
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
944 (autoload 'tags-apropos "etags" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
945 Display list of all tags in tag table REGEXP matches." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
946 (define-key esc-map "*" 'pop-tag-mark)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
947
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
948 (autoload 'pop-tag-mark "etags" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
949 Go to last tag position.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
950 `find-tag' maintains a mark-stack seperate from the \\[set-mark-command] mark-stack.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
951 This function pops (and moves to) the tag at the top of this stack." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
952
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
953 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
954
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
955 ;;;### (autoloads (finder-by-keyword finder-commentary) "finder" "lisp/finder.el")
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
956
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
957 (autoload 'finder-commentary "finder" "\
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
958 Display FILE's commentary section.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
959 FILE should be in a form suitable for passing to `locate-library'." t nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
960
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
961 (autoload 'finder-by-keyword "finder" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
962 Find packages matching a given keyword." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
963
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
964 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
965
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
966 ;;;### (autoloads (font-lock-set-defaults-1 font-lock-fontify-buffer turn-off-font-lock turn-on-font-lock font-lock-mode) "font-lock" "lisp/font-lock.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
967
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
968 (defcustom font-lock-auto-fontify t "*Whether font-lock should automatically fontify files as they're loaded.\nThis will only happen if font-lock has fontifying keywords for the major\nmode of the file. You can get finer-grained control over auto-fontification\nby using this variable in combination with `font-lock-mode-enable-list' or\n`font-lock-mode-disable-list'." :type 'boolean :group 'font-lock)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
969
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
970 (defcustom font-lock-mode-enable-list nil "*List of modes to auto-fontify, if `font-lock-auto-fontify' is nil." :type '(repeat (symbol :tag "Mode")) :group 'font-lock)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
971
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
972 (defcustom font-lock-mode-disable-list nil "*List of modes not to auto-fontify, if `font-lock-auto-fontify' is t." :type '(repeat (symbol :tag "Mode")) :group 'font-lock)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
973
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
974 (defcustom font-lock-use-colors '(color) "*Specification for when Font Lock will set up color defaults.\nNormally this should be '(color), meaning that Font Lock will set up\ncolor defaults that are only used on color displays. Set this to nil\nif you don't want Font Lock to set up color defaults at all. This\nshould be one of\n\n-- a list of valid tags, meaning that the color defaults will be used\n when all of the tags apply. (e.g. '(color x))\n-- a list whose first element is 'or and whose remaining elements are\n lists of valid tags, meaning that the defaults will be used when\n any of the tag lists apply.\n-- nil, meaning that the defaults should not be set up at all.\n\n(If you specify face values in your init file, they will override any\nthat Font Lock specifies, regardless of whether you specify the face\nvalues before or after loading Font Lock.)\n\nSee also `font-lock-use-fonts'. If you want more control over the faces\nused for fontification, see the documentation of `font-lock-mode' for\nhow to do it." :type 'sexp :group 'font-lock)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
975
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
976 (defcustom font-lock-use-fonts '(or (mono) (grayscale)) "*Specification for when Font Lock will set up non-color defaults.\n\nNormally this should be '(or (mono) (grayscale)), meaning that Font\nLock will set up non-color defaults that are only used on either mono\nor grayscale displays. Set this to nil if you don't want Font Lock to\nset up non-color defaults at all. This should be one of\n\n-- a list of valid tags, meaning that the non-color defaults will be used\n when all of the tags apply. (e.g. '(grayscale x))\n-- a list whose first element is 'or and whose remaining elements are\n lists of valid tags, meaning that the defaults will be used when\n any of the tag lists apply.\n-- nil, meaning that the defaults should not be set up at all.\n\n(If you specify face values in your init file, they will override any\nthat Font Lock specifies, regardless of whether you specify the face\nvalues before or after loading Font Lock.)\n\nSee also `font-lock-use-colors'. If you want more control over the faces\nused for fontification, see the documentation of `font-lock-mode' for\nhow to do it." :type 'sexp :group 'font-lock)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
977
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
978 (defcustom font-lock-maximum-decoration t "*If non-nil, the maximum decoration level for fontifying.\nIf nil, use the minimum decoration (equivalent to level 0).\nIf t, use the maximum decoration available.\nIf a number, use that level of decoration (or if not available the maximum).\nIf a list, each element should be a cons pair of the form (MAJOR-MODE . LEVEL),\nwhere MAJOR-MODE is a symbol or t (meaning the default). For example:\n ((c++-mode . 2) (c-mode . t) (t . 1))\nmeans use level 2 decoration for buffers in `c++-mode', the maximum decoration\navailable for buffers in `c-mode', and level 1 decoration otherwise." :type '(choice (const :tag "default" nil) (const :tag "maximum" t) (integer :tag "level" 1) (repeat :menu-tag "mode specific" :tag "mode specific" :value ((t . t)) (cons :tag "Instance" (radio :tag "Mode" (const :tag "all" t) (symbol :tag "name")) (radio :tag "Decoration" (const :tag "default" nil) (const :tag "maximum" t) (integer :tag "level" 1))))) :group 'font-lock)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
979
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
980 (define-obsolete-variable-alias 'font-lock-use-maximal-decoration 'font-lock-maximum-decoration)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
981
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
982 (defcustom font-lock-maximum-size (* 250 1024) "*If non-nil, the maximum size for buffers for fontifying.\nOnly buffers less than this can be fontified when Font Lock mode is turned on.\nIf nil, means size is irrelevant.\nIf a list, each element should be a cons pair of the form (MAJOR-MODE . SIZE),\nwhere MAJOR-MODE is a symbol or t (meaning the default). For example:\n ((c++-mode . 256000) (c-mode . 256000) (rmail-mode . 1048576))\nmeans that the maximum size is 250K for buffers in `c++-mode' or `c-mode', one\nmegabyte for buffers in `rmail-mode', and size is irrelevant otherwise." :type '(choice (const :tag "none" nil) (integer :tag "size") (repeat :menu-tag "mode specific" :tag "mode specific" :value ((t)) (cons :tag "Instance" (radio :tag "Mode" (const :tag "all" t) (symbol :tag "name")) (radio :tag "Size" (const :tag "none" nil) (integer :tag "size"))))) :group 'font-lock)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
983
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
984 (defcustom font-lock-fontify-string-delimiters nil "*If non-nil, apply font-lock-string-face to string delimiters as well as\nstring text when fontifying." :type 'boolean :group 'font-lock)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
985
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
986 (defvar font-lock-keywords nil "\
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
987 A list defining the keywords for `font-lock-mode' to highlight.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
988
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
989 FONT-LOCK-KEYWORDS := List of FONT-LOCK-FORM's.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
990
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
991 FONT-LOCK-FORM :== MATCHER
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
992 | (MATCHER . MATCH)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
993 | (MATCHER . FACE-FORM)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
994 | (MATCHER . HIGHLIGHT)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
995 | (MATCHER HIGHLIGHT ...)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
996 | (eval . FORM)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
997
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
998 MATCHER :== A string containing a regexp.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
999 | A variable containing a regexp to search for.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1000 | A function to call to make the search.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1001 It is called with one arg, the limit of the search,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1002 and should leave MATCH results in the XEmacs global
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1003 match data.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1004
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1005 MATCH :== An integer match subexpression number from MATCHER.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1006
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1007 FACE-FORM :== The symbol naming a defined face.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1008 | Expression whos value is the face name to use. If you
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1009 want FACE-FORM to be a symbol that evaluates to a face,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1010 use a form like \"(progn sym)\".
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1011
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1012 HIGHLIGHT :== MATCH-HIGHLIGHT
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1013 | MATCH-ANCHORED
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1014
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1015 FORM :== Expression returning a FONT-LOCK-FORM, evaluated when
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1016 the FONT-LOCK-FORM is first used in a buffer. This
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1017 feature can be used to provide a FONT-LOCK-FORM that
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1018 can only be generated when Font Lock mode is actually
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1019 turned on.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1020
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1021 MATCH-HIGHLIGHT :== (MATCH FACE-FORM OVERRIDE LAXMATCH)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1022
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1023 OVERRIDE :== t - overwrite existing fontification
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1024 | 'keep - only parts not already fontified are
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1025 highlighted.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1026 | 'prepend - merge faces, this fontification has
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1027 precedence over existing
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1028 | 'append - merge faces, existing fontification has
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1029 precedence over
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1030 this face.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1031
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1032 LAXMATCH :== If non-nil, no error is signalled if there is no MATCH
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1033 in MATCHER.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1034
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1035 MATCH-ANCHORED :== (ANCHOR-MATCHER PRE-MATCH-FORM \\
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1036 POST-MATCH-FORM MATCH-HIGHLIGHT ...)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1037
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1038 ANCHOR-MATCHER :== Like a MATCHER, except that the limit of the search
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1039 defaults to the end of the line after PRE-MATCH-FORM
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1040 is evaluated. However, if PRE-MATCH-FORM returns a
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1041 position greater than the end of the line, that
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1042 position is used as the limit of the search. It is
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1043 generally a bad idea to return a position greater than
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1044 the end of the line, i.e., cause the ANCHOR-MATCHER
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1045 search to span lines.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1046
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1047 PRE-MATCH-FORM :== Evaluated before the ANCHOR-MATCHER is used, therefore
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1048 can be used to initialize before, ANCHOR-MATCHER is
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1049 used. Typically, PRE-MATCH-FORM is used to move to
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1050 some position relative to the original MATCHER, before
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1051 starting with the ANCHOR-MATCHER.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1052
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1053 POST-MATCH-FORM :== Like PRE-MATCH-FORM, but used to clean up after the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1054 ANCHOR-MATCHER. It might be used to move, before
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1055 resuming with MATCH-ANCHORED's parent's MATCHER.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1056
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1057 For example, an element of the first form highlights (if not already highlighted):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1058
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1059 \"\\\\\\=<foo\\\\\\=>\" Discrete occurrences of \"foo\" in the value
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1060 of the variable `font-lock-keyword-face'.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1061
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1062 (\"fu\\\\(bar\\\\)\" . 1) Substring \"bar\" within all occurrences of
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1063 \"fubar\" in the value of
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1064 `font-lock-keyword-face'.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1065
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1066 (\"fubar\" . fubar-face) Occurrences of \"fubar\" in the value of
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1067 `fubar-face'.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1068
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1069 (\"foo\\\\|bar\" 0 foo-bar-face t) Occurrences of either \"foo\" or \"bar\" in the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1070 value of `foo-bar-face', even if already
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1071 highlighted.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1072
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1073 (fubar-match 1 fubar-face) The first subexpression within all
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1074 occurrences of whatever the function
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1075 `fubar-match' finds and matches in the value
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1076 of `fubar-face'.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1077
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1078 (\"\\\\\\=<anchor\\\\\\=>\" (0 anchor-face) (\"\\\\\\=<item\\\\\\=>\" nil nil (0 item-face)))
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1079 -------------- --------------- ------------ --- --- -------------
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1080 | | | | | |
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1081 MATCHER | ANCHOR-MATCHER | +------+ MATCH-HIGHLIGHT
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1082 MATCH-HIGHLIGHT PRE-MATCH-FORM |
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1083 POST-MATCH-FORM
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1084
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1085 Discrete occurrences of \"anchor\" in the value of `anchor-face', and
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1086 subsequent discrete occurrences of \"item\" (on the same line) in the value
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1087 of `item-face'. (Here PRE-MATCH-FORM and POST-MATCH-FORM are nil.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1088 Therefore \"item\" is initially searched for starting from the end of the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1089 match of \"anchor\", and searching for subsequent instance of \"anchor\"
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1090 resumes from where searching for \"item\" concluded.)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1091
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1092 For highlighting single items, typically only MATCH-HIGHLIGHT is required.
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1093 However, if an item or (typically) several items are to be highlighted
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1094 following the instance of another item (the anchor) then MATCH-ANCHORED may be
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1095 required.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1096
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1097 These regular expressions should not match text which spans lines. While
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1098 \\[font-lock-fontify-buffer] handles multi-line patterns correctly, updating when you
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1099 edit the buffer does not, since it considers text one line at a time.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1100
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1101 Be very careful composing regexps for this list; the wrong pattern can
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1102 dramatically slow things down!
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1103 ")
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1104
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1105 (make-variable-buffer-local 'font-lock-keywords)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1106
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1107 (defvar font-lock-syntactic-keywords nil "\
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1108 A list of the syntactic keywords to highlight.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1109 Can be the list or the name of a function or variable whose value is the list.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1110 See `font-lock-keywords' for a description of the form of this list;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1111 the differences are listed below. MATCH-HIGHLIGHT should be of the form:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1112
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1113 (MATCH SYNTAX OVERRIDE LAXMATCH)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1114
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1115 where SYNTAX can be of the form (SYNTAX-CODE . MATCHING-CHAR), the name of a
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1116 syntax table, or an expression whose value is such a form or a syntax table.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1117 OVERRIDE cannot be `prepend' or `append'.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1118
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1119 For example, an element of the form highlights syntactically:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1120
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1121 (\"\\\\$\\\\(#\\\\)\" 1 (1 . nil))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1122
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1123 a hash character when following a dollar character, with a SYNTAX-CODE of
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1124 1 (meaning punctuation syntax). Assuming that the buffer syntax table does
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1125 specify hash characters to have comment start syntax, the element will only
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1126 highlight hash characters that do not follow dollar characters as comments
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1127 syntactically.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1128
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1129 (\"\\\\('\\\\).\\\\('\\\\)\"
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1130 (1 (7 . ?'))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1131 (2 (7 . ?')))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1132
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1133 both single quotes which surround a single character, with a SYNTAX-CODE of
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1134 7 (meaning string quote syntax) and a MATCHING-CHAR of a single quote (meaning
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1135 a single quote matches a single quote). Assuming that the buffer syntax table
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1136 does not specify single quotes to have quote syntax, the element will only
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1137 highlight single quotes of the form 'c' as strings syntactically.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1138 Other forms, such as foo'bar or 'fubar', will not be highlighted as strings.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1139
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1140 This is normally set via `font-lock-defaults'.")
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1141
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1142 (make-variable-buffer-local 'font-lock-syntactic-keywords)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1143
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1144 (defcustom font-lock-mode nil "Non nil means `font-lock-mode' is on" :group 'font-lock :type 'boolean :initialize 'custom-initialize-default :require 'font-lock :set (function (lambda (var val) (font-lock-mode (or val 0)))))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1145
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1146 (defvar font-lock-mode-hook nil "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1147 Function or functions to run on entry to font-lock-mode.")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1148
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1149 (autoload 'font-lock-mode "font-lock" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1150 Toggle Font Lock Mode.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1151 With arg, turn font-lock mode on if and only if arg is positive.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1152
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1153 When Font Lock mode is enabled, text is fontified as you type it:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1154
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1155 - Comments are displayed in `font-lock-comment-face';
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1156 - Strings are displayed in `font-lock-string-face';
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1157 - Documentation strings (in Lisp-like languages) are displayed in
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1158 `font-lock-doc-string-face';
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1159 - Language keywords (\"reserved words\") are displayed in
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1160 `font-lock-keyword-face';
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1161 - Function names in their defining form are displayed in
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1162 `font-lock-function-name-face';
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1163 - Variable names in their defining form are displayed in
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1164 `font-lock-variable-name-face';
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1165 - Type names are displayed in `font-lock-type-face';
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1166 - References appearing in help files and the like are displayed
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1167 in `font-lock-reference-face';
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1168 - Preprocessor declarations are displayed in
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1169 `font-lock-preprocessor-face';
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1170
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1171 and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1172
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1173 - Certain other expressions are displayed in other faces according
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1174 to the value of the variable `font-lock-keywords'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1175
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1176 Where modes support different levels of fontification, you can use the variable
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1177 `font-lock-maximum-decoration' to specify which level you generally prefer.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1178 When you turn Font Lock mode on/off the buffer is fontified/defontified, though
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1179 fontification occurs only if the buffer is less than `font-lock-maximum-size'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1180 To fontify a buffer without turning on Font Lock mode, and regardless of buffer
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1181 size, you can use \\[font-lock-fontify-buffer].
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1182
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1183 See the variable `font-lock-keywords' for customization." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1184
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1185 (autoload 'turn-on-font-lock "font-lock" "\
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1186 Unconditionally turn on Font Lock mode." t nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1187
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1188 (autoload 'turn-off-font-lock "font-lock" "\
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1189 Unconditionally turn off Font Lock mode." t nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1190
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1191 (autoload 'font-lock-fontify-buffer "font-lock" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1192 Fontify the current buffer the way `font-lock-mode' would.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1193 See `font-lock-mode' for details.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1194
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1195 This can take a while for large buffers." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1196
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1197 (autoload 'font-lock-set-defaults-1 "font-lock" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1198
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1199 (add-minor-mode 'font-lock-mode " Font")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1200
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1201 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1202
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1203 ;;;### (autoloads (font-menu-weight-constructor font-menu-size-constructor font-menu-family-constructor reset-device-font-menus) "font-menu" "lisp/font-menu.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1204
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1205 (defcustom font-menu-ignore-scaled-fonts nil "*If non-nil, then the font menu will try to show only bitmap fonts." :type 'boolean :group 'font-menu)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1206
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1207 (defcustom font-menu-this-frame-only-p nil "*If non-nil, then changing the default font from the font menu will only\naffect one frame instead of all frames." :type 'boolean :group 'font-menu)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1208
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1209 (fset 'install-font-menus 'reset-device-font-menus)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1210
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1211 (autoload 'reset-device-font-menus "font-menu" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1212 Generates the `Font', `Size', and `Weight' submenus for the Options menu.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1213 This is run the first time that a font-menu is needed for each device.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1214 If you don't like the lazy invocation of this function, you can add it to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1215 `create-device-hook' and that will make the font menus respond more quickly
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1216 when they are selected for the first time. If you add fonts to your system,
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1217 or if you change your font path, you can call this to re-initialize the menus." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1218
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1219 (autoload 'font-menu-family-constructor "font-menu" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1220
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1221 (autoload 'font-menu-size-constructor "font-menu" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1222
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1223 (autoload 'font-menu-weight-constructor "font-menu" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1224
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1225 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1226
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1227 ;;;### (autoloads (x-font-build-cache font-default-size-for-device font-default-encoding-for-device font-default-registry-for-device font-default-family-for-device font-default-object-for-device font-default-font-for-device font-create-object) "font" "lisp/font.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1228
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1229 (autoload 'font-create-object "font" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1230
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1231 (autoload 'font-default-font-for-device "font" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1232
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1233 (autoload 'font-default-object-for-device "font" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1234
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1235 (autoload 'font-default-family-for-device "font" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1236
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1237 (autoload 'font-default-registry-for-device "font" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1238
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1239 (autoload 'font-default-encoding-for-device "font" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1240
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1241 (autoload 'font-default-size-for-device "font" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1242
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1243 (autoload 'x-font-build-cache "font" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1244
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1245 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1246
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1247 ;;;### (autoloads (gnuserv-start gnuserv-running-p) "gnuserv" "lisp/gnuserv.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1248
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1249 (defcustom gnuserv-frame nil "*The frame to be used to display all edited files.\nIf nil, then a new frame is created for each file edited.\nIf t, then the currently selected frame will be used.\nIf a function, then this will be called with a symbol `x' or `tty' as the\nonly argument, and its return value will be interpreted as above." :tag "Gnuserv Frame" :type '(radio (const :tag "Create new frame each time" nil) (const :tag "Use selected frame" t) (function-item :tag "Use main Emacs frame" gnuserv-main-frame-function) (function-item :tag "Use visible frame, otherwise create new" gnuserv-visible-frame-function) (function-item :tag "Create special Gnuserv frame and use it" gnuserv-special-frame-function) (function :tag "Other")) :group 'gnuserv :group 'frames)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1250
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1251 (autoload 'gnuserv-running-p "gnuserv" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1252 Return non-nil if a gnuserv process is running from this XEmacs session." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1253
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1254 (autoload 'gnuserv-start "gnuserv" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1255 Allow this Emacs process to be a server for client processes.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1256 This starts a gnuserv communications subprocess through which
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1257 client \"editors\" (gnuclient and gnudoit) can send editing commands to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1258 this Emacs job. See the gnuserv(1) manual page for more details.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1259
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1260 Prefix arg means just kill any existing server communications subprocess." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1261
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1262 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1263
464
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1264 ;;;### (autoloads (gtk-reset-device-font-menus) "gtk-font-menu" "lisp/gtk-font-menu.el")
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1265
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1266 (autoload 'gtk-reset-device-font-menus "gtk-font-menu" "\
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1267 Generates the `Font', `Size', and `Weight' submenus for the Options menu.
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1268 This is run the first time that a font-menu is needed for each device.
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1269 If you don't like the lazy invocation of this function, you can add it to
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1270 `create-device-hook' and that will make the font menus respond more quickly
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1271 when they are selected for the first time. If you add fonts to your system,
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1272 or if you change your font path, you can call this to re-initialize the menus." nil nil)
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1273
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1274 (defun* gtk-font-menu-font-data (face dcache) (defvar gtk-font-regexp) (defvar gtk-font-regexp-foundry-and-family) (let* ((case-fold-search t) (domain (if font-menu-this-frame-only-p (selected-frame) (selected-device))) (name (font-instance-name (face-font-instance face domain))) (truename (font-instance-truename (face-font-instance face domain (if (featurep 'mule) 'ascii)))) family size weight entry slant) (when (string-match gtk-font-regexp-foundry-and-family name) (setq family (capitalize (match-string 1 name))) (setq entry (vassoc family (aref dcache 0)))) (when (and (null entry) (string-match gtk-font-regexp-foundry-and-family truename)) (setq family (capitalize (match-string 1 truename))) (setq entry (vassoc family (aref dcache 0)))) (when (null entry) (return-from gtk-font-menu-font-data (make-vector 5 nil))) (when (string-match gtk-font-regexp name) (setq weight (capitalize (match-string 1 name))) (setq size (string-to-int (match-string 6 name)))) (when (string-match gtk-font-regexp truename) (when (not (member weight (aref entry 1))) (setq weight (capitalize (match-string 1 truename)))) (when (not (member size (aref entry 2))) (setq size (string-to-int (match-string 6 truename)))) (setq slant (capitalize (match-string 2 truename)))) (vector entry family size weight slant)))
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1275
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1276 ;;;***
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1277
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1278 ;;;### (autoloads nil "help-macro" "lisp/help-macro.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1279
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1280 (defcustom three-step-help t "*Non-nil means give more info about Help command in three steps.\nThe three steps are simple prompt, prompt with all options,\nand window listing and describing the options.\nA value of nil means skip the middle step, so that\n\\[help-command] \\[help-command] gives the window that lists the options." :type 'boolean :group 'help-appearance)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1281
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1282 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1283
502
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1284 ;;;### (autoloads (hyper-apropos-popup-menu hyper-apropos-set-variable hyper-set-variable hyper-apropos-read-variable-symbol hyper-describe-function hyper-where-is hyper-describe-variable hyper-describe-face hyper-describe-key-briefly hyper-describe-key hyper-apropos command-hyper-apropos) "hyper-apropos" "lisp/hyper-apropos.el")
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1285
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1286 (autoload 'command-hyper-apropos "hyper-apropos" "\
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1287 Display lists of commands and user options matching REGEXP
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1288 in buffer \"*Hyper Apropos*\". See `hyper-apropos-mode' for a
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1289 description of the available commands in a Hyper-Apropos buffer." t nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1290
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1291 (autoload 'hyper-apropos "hyper-apropos" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1292 Display lists of functions and variables matching REGEXP
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1293 in buffer \"*Hyper Apropos*\". If optional prefix arg is given, then the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1294 value of `hyper-apropos-programming-apropos' is toggled for this search.
502
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1295 See `hyper-apropos-mode' for a description of the available commands in
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1296 a Hyper-Apropos buffer." t nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1297
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1298 (autoload 'hyper-describe-key "hyper-apropos" nil t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1299
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1300 (autoload 'hyper-describe-key-briefly "hyper-apropos" nil t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1301
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1302 (autoload 'hyper-describe-face "hyper-apropos" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1303 Describe face..
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1304 See also `hyper-apropos' and `hyper-describe-function'." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1305
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1306 (autoload 'hyper-describe-variable "hyper-apropos" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1307 Hypertext drop-in replacement for `describe-variable'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1308 See also `hyper-apropos' and `hyper-describe-function'." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1309
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1310 (autoload 'hyper-where-is "hyper-apropos" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1311 Print message listing key sequences that invoke specified command." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1312
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1313 (autoload 'hyper-describe-function "hyper-apropos" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1314 Hypertext replacement for `describe-function'. Unlike `describe-function'
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1315 in that the symbol under the cursor is the default if it is a function.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1316 See also `hyper-apropos' and `hyper-describe-variable'." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1317
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1318 (autoload 'hyper-apropos-read-variable-symbol "hyper-apropos" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1319 Hypertext drop-in replacement for `describe-variable'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1320 See also `hyper-apropos' and `hyper-describe-function'." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1321
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1322 (define-obsolete-function-alias 'hypropos-read-variable-symbol 'hyper-apropos-read-variable-symbol)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1323
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1324 (define-obsolete-function-alias 'hypropos-get-doc 'hyper-apropos-get-doc)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1325
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1326 (autoload 'hyper-set-variable "hyper-apropos" nil t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1327
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1328 (autoload 'hyper-apropos-set-variable "hyper-apropos" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1329 Interactively set the variable on the current line." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1330
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1331 (define-obsolete-function-alias 'hypropos-set-variable 'hyper-apropos-set-variable)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1332
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1333 (autoload 'hyper-apropos-popup-menu "hyper-apropos" nil t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1334
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1335 (define-obsolete-function-alias 'hypropos-popup-menu 'hyper-apropos-popup-menu)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1336
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1337 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1338
502
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1339 ;;;### (autoloads (Info-search-index-in-xemacs-and-lispref Info-search-index-in-lispref Info-search-text-in-xemacs Info-search-text-in-lispref Info-elisp-ref Info-emacs-key Info-goto-emacs-key-command-node Info-goto-emacs-command-node Info-emacs-command Info-search Info-visit-file Info-goto-node Info-batch-rebuild-dir Info-find-node Info-query info) "info" "lisp/info.el")
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1340
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1341 (defvar Info-directory-list nil "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1342 List of directories to search for Info documentation files.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1343
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1344 The first directory in this list, the \"dir\" file there will become
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1345 the (dir)Top node of the Info documentation tree.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1346
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1347 Note: DO NOT use the `customize' interface to change the value of this
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1348 variable. Its value is created dynamically on each startup, depending
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1349 on XEmacs packages installed on the system. If you want to change the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1350 search path, make the needed modifications on the variable's value
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1351 from .emacs. For instance:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1352
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1353 (setq Info-directory-list (cons \"~/info\" Info-directory-list))")
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1354
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1355 (autoload 'info "info" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1356 Enter Info, the documentation browser.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1357 Optional argument FILE specifies the file to examine;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1358 the default is the top-level directory of Info.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1359
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1360 In interactive use, a prefix argument directs this command
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1361 to read a file name from the minibuffer." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1362
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1363 (autoload 'Info-query "info" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1364 Enter Info, the documentation browser. Prompt for name of Info file." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1365
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1366 (autoload 'Info-find-node "info" "\
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1367 Go to an info node specified as separate FILENAME and NODENAME.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1368 Look for a plausible filename, or if not found then look for URL's and
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1369 dispatch to the appropriate fn. NO-GOING-BACK is non-nil if
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1370 recovering from an error in this function; it says do not attempt
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1371 further (recursive) error recovery. TRYFILE is ??" nil nil)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1372
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1373 (autoload 'Info-batch-rebuild-dir "info" "\
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1374 (Re)build `dir' files in the directories remaining on the command line.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1375 Use this from the command line, with `-batch', it won't work in an
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1376 interactive XEmacs.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1377
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1378 Each file is processed even if an error occurred previously. For example,
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1379 invoke \"xemacs -batch -f Info-batch-rebuild-dir /usr/local/info\"." nil nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1380
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1381 (autoload 'Info-goto-node "info" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1382 Go to info node named NAME. Give just NODENAME or (FILENAME)NODENAME.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1383 Actually, the following interpretations of NAME are tried in order:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1384 (FILENAME)NODENAME
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1385 (FILENAME) (using Top node)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1386 NODENAME (in current file)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1387 TAGNAME (see below)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1388 FILENAME (using Top node)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1389 where TAGNAME is a string that appears in quotes: \"TAGNAME\", in an
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1390 annotation for any node of any file. (See `a' and `x' commands.)" t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1391
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1392 (autoload 'Info-visit-file "info" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1393 Directly visit an info file." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1394
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1395 (autoload 'Info-search "info" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1396 Search for REGEXP, starting from point, and select node it's found in." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1397
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1398 (autoload 'Info-emacs-command "info" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1399 Look up an Emacs command in the Emacs manual in the Info system.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1400 This command is designed to be used whether you are already in Info or not." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1401
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1402 (autoload 'Info-goto-emacs-command-node "info" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1403 Look up an Emacs command in the Emacs manual in the Info system.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1404 This command is designed to be used whether you are already in Info or not." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1405
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1406 (autoload 'Info-goto-emacs-key-command-node "info" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1407 Look up an Emacs key sequence in the Emacs manual in the Info system.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1408 This command is designed to be used whether you are already in Info or not." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1409
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1410 (autoload 'Info-emacs-key "info" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1411 Look up an Emacs key sequence in the Emacs manual in the Info system.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1412 This command is designed to be used whether you are already in Info or not." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1413
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1414 (autoload 'Info-elisp-ref "info" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1415 Look up an Emacs Lisp function in the Elisp manual in the Info system.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1416 This command is designed to be used whether you are already in Info or not." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1417
502
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1418 (autoload 'Info-search-text-in-lispref "info" "\
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1419 Search for REGEXP in Lispref text and select node it's found in." t nil)
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1420
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1421 (autoload 'Info-search-text-in-xemacs "info" "\
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1422 Search for REGEXP in User's Manual text and select node it's found in." t nil)
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1423
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1424 (autoload 'Info-search-index-in-lispref "info" "\
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1425 Search for REGEXP in Lispref index and select node it's found in." t nil)
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1426
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1427 (autoload 'Info-search-index-in-xemacs-and-lispref "info" "\
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1428 Search for REGEXP in both User's Manual and Lispref indices.
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1429 Select node it's found in." t nil)
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1430
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1431 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1432
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1433 ;;;### (autoloads nil "itimer-autosave" "lisp/itimer-autosave.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1434
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1435 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1436
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1437 ;;;### (autoloads nil "loaddefs" "lisp/loaddefs.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1438
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1439 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1440
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1441 ;;;### (autoloads nil "loadhist" "lisp/loadhist.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1442
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1443 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1444
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1445 ;;;### (autoloads (mswindows-reset-device-font-menus) "msw-font-menu" "lisp/msw-font-menu.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1446
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1447 (autoload 'mswindows-reset-device-font-menus "msw-font-menu" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1448 Generates the `Font', `Size', and `Weight' submenus for the Options menu.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1449 This is run the first time that a font-menu is needed for each device.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1450 If you don't like the lazy invocation of this function, you can add it to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1451 `create-device-hook' and that will make the font menus respond more quickly
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1452 when they are selected for the first time. If you add fonts to your system,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1453 or if you change your font path, you can call this to re-initialize the menus." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1454
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1455 (defun* mswindows-font-menu-font-data (face dcache) (let* ((case-fold-search t) (domain (if font-menu-this-frame-only-p (selected-frame) (selected-device))) (name (font-instance-name (face-font-instance face domain))) (truename (font-instance-truename (face-font-instance face domain (if (featurep 'mule) 'ascii)))) family size weight entry slant) (when (string-match mswindows-font-regexp name) (setq family (match-string 1 name)) (setq entry (vassoc family (aref dcache 0)))) (when (and (null entry) (string-match mswindows-font-regexp truename)) (setq family (match-string 1 truename)) (setq entry (vassoc family (aref dcache 0)))) (when (null entry) (return-from mswindows-font-menu-font-data (make-vector 5 nil))) (when (string-match mswindows-font-regexp name) (setq weight (match-string 2 name)) (setq size (string-to-int (match-string 4 name)))) (when (string-match mswindows-font-regexp truename) (when (not (member weight (aref entry 1))) (setq weight (match-string 2 truename))) (when (not (member size (aref entry 2))) (setq size (string-to-int (match-string 4 truename)))) (setq slant (match-string 5 truename))) (vector entry family size weight slant)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1456
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1457 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1458
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1459 ;;;### (autoloads (mwheel-install) "mwheel" "lisp/mwheel.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1460
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1461 (autoload 'mwheel-install "mwheel" "\
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1462 Enable mouse wheel support." t nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1463
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1464 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1465
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1466 ;;;### (autoloads (package-admin-add-binary-package package-admin-add-single-file-package) "package-admin" "lisp/package-admin.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1467
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1468 (autoload 'package-admin-add-single-file-package "package-admin" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1469 Install a single file Lisp package into XEmacs package hierarchy.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1470 `file' should be the full path to the lisp file to install.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1471 `destdir' should be a simple directory name.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1472 The optional `pkg-dir' can be used to override the default package hierarchy
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1473 \(car (last late-packages))." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1474
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1475 (autoload 'package-admin-add-binary-package "package-admin" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1476 Install a pre-bytecompiled XEmacs package into package hierarchy." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1477
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1478 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1479
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1480 ;;;### (autoloads (package-get-custom package-get-package-provider package-get package-get-dependencies package-get-all package-get-update-all package-get-delete-package package-get-save-base package-get-update-base-from-buffer package-get-update-base package-get-update-base-entry package-get-require-base package-get-download-menu) "package-get" "lisp/package-get.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1481
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1482 (defvar package-get-base nil "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1483 List of packages that are installed at this site.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1484 For each element in the alist, car is the package name and the cdr is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1485 a plist containing information about the package. Typical fields
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1486 kept in the plist are:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1487
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1488 version - version of this package
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1489 provides - list of symbols provided
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1490 requires - list of symbols that are required.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1491 These in turn are provided by other packages.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1492 filename - name of the file.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1493 size - size of the file (aka the bundled package)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1494 md5sum - computed md5 checksum
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1495 description - What this package is for.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1496 type - Whether this is a 'binary (default) or 'single file package
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1497
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1498 More fields may be added as needed. An example:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1499
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1500 '(
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1501 (name
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1502 (version \"<version 2>\"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1503 file \"filename\"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1504 description \"what this package is about.\"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1505 provides (<list>)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1506 requires (<list>)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1507 size <integer-bytes>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1508 md5sum \"<checksum\"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1509 type single
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1510 )
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1511 (version \"<version 1>\"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1512 file \"filename\"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1513 description \"what this package is about.\"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1514 provides (<list>)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1515 requires (<list>)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1516 size <integer-bytes>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1517 md5sum \"<checksum\"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1518 type single
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1519 )
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1520 ...
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1521 ))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1522
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1523 For version information, it is assumed things are listed in most
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1524 recent to least recent -- in other words, the version names don't have to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1525 be lexically ordered. It is debatable if it makes sense to have more than
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1526 one version of a package available.")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1527
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1528 (defcustom package-get-download-sites '(("Pre-Releases" "ftp.xemacs.org" "pub/xemacs/beta/experimental/packages") ("xemacs.org" "ftp.xemacs.org" "pub/xemacs/packages") ("crc.ca (Canada)" "ftp.crc.ca" "pub/packages/editors/xemacs/packages") ("ualberta.ca (Canada)" "sunsite.ualberta.ca" "pub/Mirror/xemacs/packages") ("uiuc.edu (United States)" "uiarchive.uiuc.edu" "pub/packages/xemacs/packages") ("unc.edu (United States)" "metalab.unc.edu" "pub/packages/editors/xemacs/packages") ("utk.edu (United States)" "ftp.sunsite.utk.edu" "pub/xemacs/packages") ("unicamp.br (Brazil)" "ftp.unicamp.br" "pub/xemacs/packages") ("tuwien.ac.at (Austria)" "gd.tuwien.ac.at" "editors/xemacs/packages") ("auc.dk (Denmark)" "sunsite.auc.dk" "pub/emacs/xemacs/packages") ("doc.ic.ac.uk (England)" "sunsite.doc.ic.ac.uk" "packages/xemacs/packages") ("funet.fi (Finland)" "ftp.funet.fi" "pub/mirrors/ftp.xemacs.org/pub/tux/xemacs/packages") ("cenatls.cena.dgac.fr (France)" "ftp.cenatls.cena.dgac.fr" "Emacs/xemacs/packages") ("pasteur.fr (France)" "ftp.pasteur.fr" "pub/computing/xemacs/packages") ("tu-darmstadt.de (Germany)" "ftp.tu-darmstadt.de" "pub/editors/xemacs/packages") ("kfki.hu (Hungary)" "ftp.kfki.hu" "pub/packages/xemacs/packages") ("eunet.ie (Ireland)" "ftp.eunet.ie" "mirrors/ftp.xemacs.org/pub/xemacs/packages") ("uniroma2.it (Italy)" "ftp.uniroma2.it" "unix/misc/dist/XEMACS/packages") ("uio.no (Norway)" "sunsite.uio.no" "pub/xemacs/packages") ("icm.edu.pl (Poland)" "ftp.icm.edu.pl" "pub/unix/editors/xemacs/packages") ("srcc.msu.su (Russia)" "ftp.srcc.msu.su" "mirror/ftp.xemacs.org/packages") ("sunet.se (Sweden)" "ftp.sunet.se" "pub/gnu/xemacs/packages") ("cnlab-switch.ch (Switzerland)" "sunsite.cnlab-switch.ch" "mirror/xemacs/packages") ("aist.go.jp (Japan)" "ring.aist.go.jp" "pub/text/xemacs/packages") ("asahi-net.or.jp (Japan)" "ring.asahi-net.or.jp" "pub/text/xemacs/packages") ("dti.ad.jp (Japan)" "ftp.dti.ad.jp" "pub/unix/editor/xemacs/packages") ("jaist.ac.jp (Japan)" "ftp.jaist.ac.jp" "pub/GNU/xemacs/packages") ("nucba.ac.jp (Japan)" "mirror.nucba.ac.jp" "mirror/xemacs/packages") ("sut.ac.jp (Japan)" "sunsite.sut.ac.jp" "pub/archives/packages/xemacs/packages") ("tsukuba.ac.jp (Japan)" "ftp.netlab.is.tsukuba.ac.jp" "pub/GNU/xemacs/packages") ("kreonet.re.kr (Korea)" "ftp.kreonet.re.kr" "pub/tools/emacs/xemacs/packages") ("nctu.edu.tw (Taiwan)" "coda.nctu.edu.tw" "Editors/xemacs/packages") ("sun.ac.za (South Africa)" "ftp.sun.ac.za" "xemacs/packages") ("isu.net.sa (Saudi Arabia)" "ftp.isu.net.sa" "pub/mirrors/ftp.xemacs.org/packages") ("aarnet.edu.au (Australia)" "mirror.aarnet.edu.au" "pub/xemacs/packages")) "*List of remote sites available for downloading packages.\nList format is '(site-description site-name directory-on-site).\nSITE-DESCRIPTION is a textual description of the site. SITE-NAME\nis the internet address of the download site. DIRECTORY-ON-SITE\nis the directory on the site in which packages may be found.\nThis variable is used to initialize `package-get-remote', the\nvariable actually used to specify package download sites." :tag "Package download sites" :type '(repeat (list (string :tag "Name") host-name directory)) :group 'package-get)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1529
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1530 (autoload 'package-get-download-menu "package-get" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1531 Build the `Add Download Site' menu." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1532
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1533 (autoload 'package-get-require-base "package-get" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1534 Require that a package-get database has been loaded.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1535 If the optional FORCE-CURRENT argument or the value of
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1536 `package-get-always-update' is Non-nil, try to update the database
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1537 from a location in `package-get-remote'. Otherwise a local copy is used
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1538 if available and remote access is never done.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1539
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1540 Please use FORCE-CURRENT only when the user is explictly dealing with packages
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1541 and remote access is likely in the near future." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1542
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1543 (autoload 'package-get-update-base-entry "package-get" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1544 Update an entry in `package-get-base'." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1545
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1546 (autoload 'package-get-update-base "package-get" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1547 Update the package-get database file with entries from DB-FILE.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1548 Unless FORCE-CURRENT is non-nil never try to update the database." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1549
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1550 (autoload 'package-get-update-base-from-buffer "package-get" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1551 Update the package-get database with entries from BUFFER.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1552 BUFFER defaults to the current buffer. This command can be
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1553 used interactively, for example from a mail or news buffer." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1554
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1555 (autoload 'package-get-save-base "package-get" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1556 Write the package-get database to FILE.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1557
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1558 Note: This database will be unsigned of course." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1559
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1560 (autoload 'package-get-delete-package "package-get" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1561 Delete an installation of PACKAGE below directory PKG-TOPDIR.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1562 PACKAGE is a symbol, not a string.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1563 This is just an interactive wrapper for `package-admin-delete-binary-package'." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1564
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1565 (autoload 'package-get-update-all "package-get" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1566 Fetch and install the latest versions of all currently installed packages." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1567
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1568 (autoload 'package-get-all "package-get" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1569 Fetch PACKAGE with VERSION and all other required packages.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1570 Uses `package-get-base' to determine just what is required and what
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1571 package provides that functionality. If VERSION is nil, retrieves
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1572 latest version. Optional argument FETCHED-PACKAGES is used to keep
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1573 track of packages already fetched. Optional argument INSTALL-DIR,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1574 if non-nil, specifies the package directory where fetched packages
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1575 should be installed.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1576
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1577 Returns nil upon error." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1578
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1579 (autoload 'package-get-dependencies "package-get" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1580 Compute dependencies for PACKAGES.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1581 Uses `package-get-base' to determine just what is required and what
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1582 package provides that functionality. Returns the list of packages
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1583 required by PACKAGES." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1584
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1585 (autoload 'package-get "package-get" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1586 Fetch PACKAGE from remote site.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1587 Optional arguments VERSION indicates which version to retrieve, nil
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1588 means most recent version. CONFLICT indicates what happens if the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1589 package is already installed. Valid values for CONFLICT are:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1590 'always always retrieve the package even if it is already installed
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1591 'never do not retrieve the package if it is installed.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1592 INSTALL-DIR, if non-nil, specifies the package directory where
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1593 fetched packages should be installed.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1594
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1595 The value of `package-get-base' is used to determine what files should
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1596 be retrieved. The value of `package-get-remote' is used to determine
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1597 where a package should be retrieved from. The sites are tried in
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1598 order so one is better off listing easily reached sites first.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1599
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1600 Once the package is retrieved, its md5 checksum is computed. If that
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1601 sum does not match that stored in `package-get-base' for this version
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1602 of the package, an error is signalled.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1603
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1604 Returns `t' upon success, the symbol `error' if the package was
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1605 successfully installed but errors occurred during initialization, or
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1606 `nil' upon error." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1607
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1608 (autoload 'package-get-package-provider "package-get" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1609 Search for a package that provides SYM and return the name and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1610 version. Searches in `package-get-base' for SYM. If SYM is a
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1611 consp, then it must match a corresponding (provide (SYM VERSION)) from
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1612 the package.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1613
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1614 If FORCE-CURRENT is non-nil make sure the database is up to date. This might
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1615 lead to Emacs accessing remote sites." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1616
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1617 (autoload 'package-get-custom "package-get" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1618 Fetch and install the latest versions of all customized packages." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1619
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1620 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1621
452
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 444
diff changeset
1622 ;;;### (autoloads (package-net-update-installed-db package-net-setup-directory) "package-net" "lisp/package-net.el")
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 444
diff changeset
1623
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 444
diff changeset
1624 (autoload 'package-net-setup-directory "package-net" nil nil nil)
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 444
diff changeset
1625
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 444
diff changeset
1626 (autoload 'package-net-update-installed-db "package-net" "\
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 444
diff changeset
1627 Write out the installed package index in a net install suitable format.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 444
diff changeset
1628 If DESTDIR is non-nil then use that as the destination directory.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 444
diff changeset
1629 DESTDIR defaults to the value of `package-net-setup-directory'." nil nil)
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 444
diff changeset
1630
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 444
diff changeset
1631 ;;;***
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 444
diff changeset
1632
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1633 ;;;### (autoloads (pui-list-packages pui-add-install-directory package-ui-add-site) "package-ui" "lisp/package-ui.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1634
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1635 (autoload 'package-ui-add-site "package-ui" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1636 Add site to package-get-remote and possibly offer to update package list." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1637
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1638 (autoload 'pui-add-install-directory "package-ui" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1639 Add a new package binary directory to the head of `package-get-remote'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1640 Note that no provision is made for saving any changes made by this function.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1641 It exists mainly as a convenience for one-time package installations from
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1642 disk." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1643
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1644 (autoload 'pui-list-packages "package-ui" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1645 List all packages and package information.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1646 The package name, version, and description are displayed. From the displayed
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1647 buffer, the user can see which packages are installed, which are not, and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1648 which are out-of-date (a newer version is available). The user can then
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1649 select packages for installation via the keyboard or mouse." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1650
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1651 (defalias 'list-packages 'pui-list-packages)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1652
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1653 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1654
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1655 ;;;### (autoloads (picture-mode) "picture" "lisp/picture.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1656
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1657 (autoload 'picture-mode "picture" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1658 Switch to Picture mode, in which a quarter-plane screen model is used.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1659 Printing characters replace instead of inserting themselves with motion
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1660 afterwards settable by these commands:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1661 C-c < Move left after insertion.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1662 C-c > Move right after insertion.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1663 C-c ^ Move up after insertion.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1664 C-c . Move down after insertion.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1665 C-c ` Move northwest (nw) after insertion.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1666 C-c ' Move northeast (ne) after insertion.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1667 C-c / Move southwest (sw) after insertion.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1668 C-c \\ Move southeast (se) after insertion.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1669 The current direction is displayed in the modeline. The initial
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1670 direction is right. Whitespace is inserted and tabs are changed to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1671 spaces when required by movement. You can move around in the buffer
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1672 with these commands:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1673 \\[picture-move-down] Move vertically to SAME column in previous line.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1674 \\[picture-move-up] Move vertically to SAME column in next line.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1675 \\[picture-end-of-line] Move to column following last non-whitespace character.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1676 \\[picture-forward-column] Move right inserting spaces if required.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1677 \\[picture-backward-column] Move left changing tabs to spaces if required.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1678 C-c C-f Move in direction of current picture motion.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1679 C-c C-b Move in opposite direction of current picture motion.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1680 Return Move to beginning of next line.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1681 You can edit tabular text with these commands:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1682 M-Tab Move to column beneath (or at) next interesting character.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1683 `Indents' relative to a previous line.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1684 Tab Move to next stop in tab stop list.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1685 C-c Tab Set tab stops according to context of this line.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1686 With ARG resets tab stops to default (global) value.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1687 See also documentation of variable picture-tab-chars
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1688 which defines \"interesting character\". You can manually
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1689 change the tab stop list with command \\[edit-tab-stops].
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1690 You can manipulate text with these commands:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1691 C-d Clear (replace) ARG columns after point without moving.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1692 C-c C-d Delete char at point - the command normally assigned to C-d.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1693 \\[picture-backward-clear-column] Clear (replace) ARG columns before point, moving back over them.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1694 \\[picture-clear-line] Clear ARG lines, advancing over them. The cleared
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1695 text is saved in the kill ring.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1696 \\[picture-open-line] Open blank line(s) beneath current line.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1697 You can manipulate rectangles with these commands:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1698 C-c C-k Clear (or kill) a rectangle and save it.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1699 C-c C-w Like C-c C-k except rectangle is saved in named register.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1700 C-c C-y Overlay (or insert) currently saved rectangle at point.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1701 C-c C-x Like C-c C-y except rectangle is taken from named register.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1702 \\[copy-rectangle-to-register] Copies a rectangle to a register.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1703 \\[advertised-undo] Can undo effects of rectangle overlay commands
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1704 commands if invoked soon enough.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1705 You can return to the previous mode with:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1706 C-c C-c Which also strips trailing whitespace from every line.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1707 Stripping is suppressed by supplying an argument.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1708
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1709 Entry to this mode calls the value of picture-mode-hook if non-nil.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1710
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1711 Note that Picture mode commands will work outside of Picture mode, but
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1712 they are not defaultly assigned to keys." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1713
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1714 (defalias 'edit-picture 'picture-mode)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1715
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1716 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1717
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1718 ;;;### (autoloads (clear-rectangle string-rectangle open-rectangle insert-rectangle yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle delete-rectangle) "rect" "lisp/rect.el")
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1719
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1720 (autoload 'delete-rectangle "rect" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1721 Delete the text in the region-rectangle without saving it.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1722 The same range of columns is deleted in each line starting with the line
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1723 where the region begins and ending with the line where the region ends.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1724
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1725 When called from a program, the rectangle's corners are START and END.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1726 With a prefix (or FILL) argument, also fill lines where nothing has to be
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1727 deleted." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1728
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1729 (autoload 'delete-extract-rectangle "rect" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1730 Delete the contents of the rectangle with corners at START and END, and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1731 return it as a list of strings, one for each line of the rectangle.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1732
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1733 With an optional FILL argument, also fill lines where nothing has to be
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1734 deleted." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1735
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1736 (autoload 'extract-rectangle "rect" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1737 Return the contents of the rectangle with corners at START and END,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1738 as a list of strings, one for each line of the rectangle." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1739
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1740 (defvar killed-rectangle nil "\
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1741 Rectangle for `yank-rectangle' to insert.")
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1742
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1743 (autoload 'kill-rectangle "rect" "\
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1744 Delete the region-rectangle and save it as the last killed one.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1745 You might prefer to use `delete-extract-rectangle' from a program.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1746
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1747 When called from a program, the rectangle's corners are START and END.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1748 With a prefix (or FILL) argument, also fill lines where nothing has to be
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1749 deleted." t nil)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1750
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1751 (autoload 'yank-rectangle "rect" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1752 Yank the last killed rectangle with upper left corner at point." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1753
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1754 (autoload 'insert-rectangle "rect" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1755 Insert text of RECTANGLE with upper left corner at point.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1756 RECTANGLE's first line is inserted at point, its second
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1757 line is inserted at a point vertically under point, etc.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1758 RECTANGLE should be a list of strings.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1759 After this command, the mark is at the upper left corner
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1760 and point is at the lower right corner." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1761
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1762 (autoload 'open-rectangle "rect" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1763 Blank out the region-rectangle, shifting text right.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1764
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1765 When called from a program, the rectangle's corners are START and END.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1766 With a prefix (or FILL) argument, fill with blanks even if there is no text
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1767 on the right side of the rectangle." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1768
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1769 (autoload 'string-rectangle "rect" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1770 Insert STRING on each line of the region-rectangle, shifting text right.
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1771 The left edge of the rectangle specifies the column for insertion.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1772
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1773 If `pending-delete-mode' is active the string replace the region.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
1774 Otherwise this command does not delete or overwrite any existing text.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1775
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1776 When called from a program, the rectangle's corners are START and END." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1777
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1778 (autoload 'clear-rectangle "rect" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1779 Blank out the region-rectangle.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1780 The text previously in the region is overwritten with blanks.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1781
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1782 When called from a program, the rectangle's corners are START and END.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1783 With a prefix (or FILL) argument, also fill with blanks the parts of the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1784 rectangle which were empty." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1785
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1786 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1787
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1788 ;;;### (autoloads (list-load-path-shadows) "shadow" "lisp/shadow.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1789
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1790 (autoload 'list-load-path-shadows "shadow" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1791 Display a list of Emacs Lisp files that shadow other files.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1792
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1793 This function lists potential load-path problems. Directories in the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1794 `load-path' variable are searched, in order, for Emacs Lisp
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1795 files. When a previously encountered file name is found again, a
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1796 message is displayed indicating that the later file is \"hidden\" by
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1797 the earlier.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1798
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1799 For example, suppose `load-path' is set to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1800
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1801 \(\"/usr/gnu/emacs/site-lisp\" \"/usr/gnu/emacs/share/emacs/19.30/lisp\")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1802
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1803 and that each of these directories contains a file called XXX.el. Then
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1804 XXX.el in the site-lisp directory is referred to by all of:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1805 \(require 'XXX), (autoload .... \"XXX\"), (load-library \"XXX\") etc.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1806
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1807 The first XXX.el file prevents emacs from seeing the second (unless
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1808 the second is loaded explicitly via load-file).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1809
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1810 When not intended, such shadowings can be the source of subtle
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1811 problems. For example, the above situation may have arisen because the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1812 XXX package was not distributed with versions of emacs prior to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1813 19.30. An emacs maintainer downloaded XXX from elsewhere and installed
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1814 it. Later, XXX was updated and included in the emacs distribution.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1815 Unless the emacs maintainer checks for this, the new version of XXX
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1816 will be hidden behind the old (which may no longer work with the new
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1817 emacs version).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1818
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1819 This function performs these checks and flags all possible
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1820 shadowings. Because a .el file may exist without a corresponding .elc
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1821 \(or vice-versa), these suffixes are essentially ignored. A file
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1822 XXX.elc in an early directory (that does not contain XXX.el) is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1823 considered to shadow a later file XXX.el, and vice-versa.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1824
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1825 When run interactively, the shadowings (if any) are displayed in a
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1826 buffer called `*Shadows*'. Shadowings are located by calling the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1827 \(non-interactive) companion function, `find-emacs-lisp-shadows'." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1828
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1829 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1830
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1831 ;;;### (autoloads (load-default-sounds load-sound-file) "sound" "lisp/sound.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1832
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1833 (or sound-alist (setq sound-alist '((ready nil) (warp nil))))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1834
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1835 (autoload 'load-sound-file "sound" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1836 Read in an audio-file and add it to the sound-alist.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1837
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1838 FILENAME can either be absolute or relative, in which case the file will
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1839 be searched in the directories given by `default-sound-directory-list'.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1840 When looking for the file, the extensions given by `sound-extension-list' are
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1841 also tried in the given order.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 452
diff changeset
1842
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1843 You can only play sound files if you are running on display 0 of the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1844 console of a machine with native sound support or running a NetAudio
502
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1845 or ESD server and XEmacs has the necessary sound support compiled in.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1846
502
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1847 The sound file must be in the Sun/NeXT U-LAW format, except on Linux
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1848 and MS Windows, where .wav files are also supported by the sound card
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 464
diff changeset
1849 drivers." t nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1850
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1851 (autoload 'load-default-sounds "sound" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1852 Load and install some sound files as beep-types, using
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1853 `load-sound-file'. This only works if you're on display 0 of the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1854 console of a machine with native sound support or running a NetAudio
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1855 server and XEmacs has the necessary sound support compiled in." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1856
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1857 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1858
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1859 ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) "userlock" "lisp/userlock.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1860
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1861 (autoload 'ask-user-about-lock "userlock" "\
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1862 Ask user wanting to edit FILENAME, locked by OTHER-USER, what to do.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1863 This function has a choice of three things to do:
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1864 do (signal 'file-locked (list FILENAME OTHER-USER))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1865 to refrain from editing the file
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1866 return t (grab the lock on the file)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1867 return nil (edit the file even though it is locked).
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1868 You can rewrite it to use any criteria you like to choose which one to do." nil nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1869
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1870 (autoload 'ask-user-about-supersession-threat "userlock" "\
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1871 Ask user who is about to modify an obsolete buffer what to do.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1872 This function has two choices: it can return, in which case the modification
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1873 of the buffer will proceed, or it can (signal 'file-supersession (FILENAME)),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1874 in which case the proposed buffer modification will not be made.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1875
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1876 You can rewrite this to use any criteria you like to choose which one to do.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1877 The buffer in question is current when this function is called." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1878
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1879 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1880
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1881 ;;;### (autoloads (toggle-truncate-lines auto-view-mode view-major-mode view-mode view-minor-mode view-buffer-other-window view-file-other-window view-buffer view-file) "view-less" "lisp/view-less.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1882
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1883 (defvar view-minor-mode-map (let ((map (make-keymap))) (set-keymap-name map 'view-minor-mode-map) (suppress-keymap map) (define-key map "-" 'negative-argument) (define-key map " " 'scroll-up) (define-key map "f" 'scroll-up) (define-key map "b" 'scroll-down) (define-key map 'backspace 'scroll-down) (define-key map 'delete 'scroll-down) (define-key map " " 'view-scroll-lines-up) (define-key map "\n" 'view-scroll-lines-up) (define-key map "e" 'view-scroll-lines-up) (define-key map "j" 'view-scroll-lines-up) (define-key map "y" 'view-scroll-lines-down) (define-key map "k" 'view-scroll-lines-down) (define-key map "d" 'view-scroll-some-lines-up) (define-key map "u" 'view-scroll-some-lines-down) (define-key map "r" 'recenter) (define-key map "t" 'toggle-truncate-lines) (define-key map "N" 'view-buffer) (define-key map "E" 'view-file) (define-key map "P" 'view-buffer) (define-key map "!" 'shell-command) (define-key map "|" 'shell-command-on-region) (define-key map "=" 'what-line) (define-key map "?" 'view-search-backward) (define-key map "h" 'view-mode-describe) (define-key map "s" 'view-repeat-search) (define-key map "n" 'view-repeat-search) (define-key map "/" 'view-search-forward) (define-key map "\\" 'view-search-backward) (define-key map "g" 'view-goto-line) (define-key map "G" 'view-last-windowful) (define-key map "%" 'view-goto-percent) (define-key map "p" 'view-goto-percent) (define-key map "m" 'point-to-register) (define-key map "'" 'register-to-point) (define-key map "C" 'view-cleanup-backspaces) (define-key map "" 'view-quit) (define-key map "" 'view-quit-toggle-ro) (define-key map "q" 'view-quit) map))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1884
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1885 (defvar view-mode-map (let ((map (copy-keymap view-minor-mode-map))) (set-keymap-name map 'view-mode-map) map))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1886
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1887 (autoload 'view-file "view-less" "\
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1888 Find FILENAME, enter view mode. With prefix arg OTHER-WINDOW-P, use other window." t nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1889
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1890 (autoload 'view-buffer "view-less" "\
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1891 Switch to BUFFER, enter view mode. With prefix arg use other window." t nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1892
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1893 (autoload 'view-file-other-window "view-less" "\
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1894 Find FILENAME in other window, and enter view mode." t nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1895
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1896 (autoload 'view-buffer-other-window "view-less" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1897 Switch to BUFFER in another window, and enter view mode." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1898
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1899 (autoload 'view-minor-mode "view-less" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1900 Minor mode for viewing text, with bindings like `less'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1901 Commands are:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1902 \\<view-minor-mode-map>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1903 0..9 prefix args
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1904 - prefix minus
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1905 \\[scroll-up] page forward
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1906 \\[scroll-down] page back
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1907 \\[view-scroll-lines-up] scroll prefix-arg lines forward, default 1.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1908 \\[view-scroll-lines-down] scroll prefix-arg lines backward, default 1.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1909 \\[view-scroll-some-lines-down] scroll prefix-arg lines backward, default 10.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1910 \\[view-scroll-some-lines-up] scroll prefix-arg lines forward, default 10.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1911 \\[what-line] print line number
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1912 \\[view-mode-describe] print this help message
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1913 \\[view-search-forward] regexp search, uses previous string if you just hit RET
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1914 \\[view-search-backward] as above but searches backward
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1915 \\[view-repeat-search] repeat last search
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1916 \\[view-goto-line] goto line prefix-arg, default 1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1917 \\[view-last-windowful] goto line prefix-arg, default last line
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1918 \\[view-goto-percent] goto a position by percentage
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1919 \\[toggle-truncate-lines] toggle truncate-lines
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1920 \\[view-file] view another file
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1921 \\[view-buffer] view another buffer
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1922 \\[view-cleanup-backspaces] cleanup backspace constructions
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1923 \\[shell-command] execute a shell command
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1924 \\[shell-command-on-region] execute a shell command with the region as input
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1925 \\[view-quit] exit view-mode, and bury the current buffer.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1926
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1927 If invoked with the optional (prefix) arg non-nil, view-mode cleans up
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1928 backspace constructions.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1929
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1930 More precisely:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1931 \\{view-minor-mode-map}" t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1932
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1933 (autoload 'view-mode "view-less" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1934 View the current buffer using view-minor-mode. This exists to be 99.9%
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1935 compatible with the implementations of `view-mode' in view.el and older
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1936 versions of view-less.el." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1937
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1938 (autoload 'view-major-mode "view-less" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1939 View the current buffer using view-mode, as a major mode.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1940 This function has a nonstandard name because `view-mode' is wrongly
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1941 named but is like this for compatibility reasons." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1942
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1943 (autoload 'auto-view-mode "view-less" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1944 If the file of the current buffer is not writable, call view-mode.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1945 This is meant to be added to `find-file-hooks'." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1946
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1947 (autoload 'toggle-truncate-lines "view-less" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1948 Toggles the values of truncate-lines.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1949 Positive prefix arg sets, negative disables." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1950
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1951 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1952
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1953 ;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse widget-browse-at) "wid-browse" "lisp/wid-browse.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1954
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1955 (autoload 'widget-browse-at "wid-browse" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1956 Browse the widget under point." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1957
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1958 (autoload 'widget-browse "wid-browse" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1959 Create a widget browser for WIDGET." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1960
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1961 (autoload 'widget-browse-other-window "wid-browse" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1962 Show widget browser for WIDGET in other window." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1963
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1964 (autoload 'widget-minor-mode "wid-browse" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1965 Togle minor mode for traversing widgets.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1966 With arg, turn widget mode on if and only if arg is positive." t nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1967
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1968 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1969
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1970 ;;;### (autoloads (widget-delete widget-create widget-prompt-value) "wid-edit" "lisp/wid-edit.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1971
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1972 (autoload 'widget-prompt-value "wid-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1973 Prompt for a value matching WIDGET, using PROMPT.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1974 The current value is assumed to be VALUE, unless UNBOUND is non-nil." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1975
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1976 (autoload 'widget-create "wid-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1977 Create widget of TYPE.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1978 The optional ARGS are additional keyword arguments." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1979
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1980 (autoload 'widget-delete "wid-edit" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1981 Delete WIDGET." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1982
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1983 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1984
523
cd662ad69f40 [xemacs-hg @ 2001-05-09 13:43:49 by ben]
ben
parents: 506
diff changeset
1985 ;;;### (autoloads (x-font-menu-font-data x-reset-device-font-menus) "x-font-menu" "lisp/x-font-menu.el")
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1986
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1987 (autoload 'x-reset-device-font-menus "x-font-menu" "\
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1988 Generates the `Font', `Size', and `Weight' submenus for the Options menu.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1989 This is run the first time that a font-menu is needed for each device.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1990 If you don't like the lazy invocation of this function, you can add it to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1991 `create-device-hook' and that will make the font menus respond more quickly
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1992 when they are selected for the first time. If you add fonts to your system,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1993 or if you change your font path, you can call this to re-initialize the menus." nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1994
523
cd662ad69f40 [xemacs-hg @ 2001-05-09 13:43:49 by ben]
ben
parents: 506
diff changeset
1995 (autoload 'x-font-menu-font-data "x-font-menu" nil nil nil)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1996
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1997 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1998
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1999 ;;;### (autoloads (x-win-init-sun) "x-win-sun" "lisp/x-win-sun.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2000
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2001 (autoload 'x-win-init-sun "x-win-sun" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2002
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2003 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2004
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2005 ;;;### (autoloads (x-win-init-xfree86) "x-win-xfree86" "lisp/x-win-xfree86.el")
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2006
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2007 (autoload 'x-win-init-xfree86 "x-win-xfree86" nil nil nil)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2008
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2009 ;;;***
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2010
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 428
diff changeset
2011 (provide 'lisp-autoloads)