209
|
1 ;;; loaddefs.el --- define standard autoloads of other files
|
|
2
|
229
|
3 ;; Copyright (C) 1985-7, 1992-5, 1997 Free Software Foundation, Inc.
|
209
|
4
|
229
|
5 ;; Maintainer: XEmacs Development Team
|
209
|
6 ;; Keywords: internal
|
|
7
|
|
8 ;; This file is part of XEmacs.
|
|
9
|
|
10 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
11 ;; under the terms of the GNU General Public License as published by
|
|
12 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
13 ;; any later version.
|
|
14
|
|
15 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
18 ;; General Public License for more details.
|
|
19
|
|
20 ;; You should have received a copy of the GNU General Public License
|
|
21 ;; along with XEmacs; see the file COPYING. If not, write to the
|
|
22 ;; Free Software Foundation, 59 Temple Place - Suite 330,
|
|
23 ;; Boston, MA 02111-1307, USA.
|
|
24
|
|
25 ;;; Synched up with: Not synched with FSF.
|
|
26
|
|
27 ;;; Commentary:
|
|
28
|
229
|
29 ;; The following commentary is completely out of date. I would like to
|
|
30 ;; delete it, but it serves as a useful reminder as to how things used to
|
|
31 ;; work.
|
|
32
|
|
33 ;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
34 ;; Special formatting conventions are used in this file!
|
|
35
|
|
36 ;; a backslash-newline is used at the beginning of a documentation string
|
|
37 ;; when that string should be stored in the file lib-src/DOCnnn, not in core.
|
|
38
|
|
39 ;; Such strings read into Lisp as numbers (during the pure-loading phase).
|
|
40
|
|
41 ;; But you must obey certain rules to make sure the string is understood
|
|
42 ;; and goes into lib-src/DOCnnn properly. Otherwise, the string will not go
|
|
43 ;; anywhere!
|
|
44
|
|
45 ;; The doc string must appear in the standard place in a call to
|
|
46 ;; defun, autoload, defvar or defconst. No Lisp macros are recognized.
|
|
47 ;; The open-paren starting the definition must appear in column 0.
|
209
|
48
|
229
|
49 ;; In defvar and defconst, there is an additional rule:
|
|
50 ;; The double-quote that starts the string must be on the same
|
|
51 ;; line as the defvar or defconst.
|
|
52 ;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
53
|
|
54 ;; **********************************************************************
|
|
55 ;; You should never need to write autoloads by hand and put them here.
|
|
56
|
|
57 ;; It is no longer necessary. Instead use autoload.el to maintain them
|
|
58 ;; for you. Just insert ";;;###autoload" before defuns or defmacros you
|
|
59 ;; want to be autoloaded, or other forms you want copied into loaddefs.el
|
|
60 ;; (defvars, key definitions, etc.). For example,
|
|
61 ;; ;;;###autoload
|
|
62 ;; (defun foobar () ....)
|
|
63 ;; ;;;###autoload (define-key global-map "f" 'foobar)
|
|
64 ;; ;;;###autoload
|
|
65 ;; (defvar foobar-var nil "\
|
|
66 ;; This is foobar-var's doc-string.")
|
|
67
|
|
68 ;; Then do M-x update-file-autoloads on the file to update loaddefs.el.
|
|
69
|
|
70 ;; You can also use M-x update-directory-autoloads to update the autoloads
|
|
71 ;; in loaddefs.el for all .el files in the lisp/ directory, or M-x
|
|
72 ;; update-autoloads-here to update the autoloads for each file that
|
|
73 ;; already has an autoload section in this file.
|
|
74 ;; **********************************************************************
|
209
|
75
|
|
76
|
|
77 ;;; Code:
|
|
78
|
|
79 ;; These variables are used by autoloadable packages.
|
|
80 ;; They are defined here so that they do not get overridden
|
|
81 ;; by the loading of those packages.
|
|
82
|
|
83
|
|
84 ;; Names in directory that end in one of these
|
|
85 ;; are ignored in completion,
|
|
86 ;; making it more likely you will get a unique match.
|
|
87 (setq completion-ignored-extensions
|
|
88 (mapcar 'purecopy
|
|
89 (if (eq system-type 'vax-vms)
|
|
90 '(".obj" ".elc" ".exe" ".bin" ".lbin" ".sbin"
|
|
91 ".dvi" ".toc" ".log" ".aux"
|
|
92 ".lof" ".brn" ".rnt" ".mem" ".lni" ".lis"
|
|
93 ".olb" ".tlb" ".mlb" ".hlb" ".glo" ".idx" ".lot" ".fmt")
|
|
94 '(".o" ".elc" "~" ".bin" ".lbin" ".fasl"
|
|
95 ".dvi" ".toc" ".log" ".aux" ".a" ".ln"
|
|
96 ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt"
|
251
|
97 ".diff" ".oi" ".class"))))
|
209
|
98
|
|
99
|
272
|
100 ;; This needs to be redone better. -slb
|
|
101 ;(setq debug-ignored-errors
|
|
102 ; '(beginning-of-line
|
|
103 ; beginning-of-buffer
|
|
104 ; end-of-line
|
|
105 ; end-of-buffer
|
|
106 ; end-of-file buffer-read-only
|
|
107 ; "\\`Previous command was not a yank\\'"
|
|
108 ; "\\`Minibuffer is not active for completion\\'"
|
|
109 ; "\\`No \\(following\\|preceding\\) item in .*-history\\'"
|
|
110 ; "\\`No recursive edit is in progress\\'"
|
|
111 ; "\\`Changes to be undone are outside visible portion of buffer\\'"
|
|
112 ; "\\`No further undo information\\'"
|
|
113 ; "\\`No undo information in this buffer\\'"
|
|
114 ; "\\`Buffer modified since last undo/redo, cannot redo"
|
|
115 ; "\\`Save not confirmed\\'"
|
|
116 ; "\\`Canceled\\'"
|
|
117 ; "\\`\\(Revert\\|Steal\\|Recover-file\\) cancelled\\.\\'"
|
209
|
118
|
272
|
119 ; ;; comint
|
|
120 ; "\\`Not at command line\\'"
|
|
121 ; "\\`Empty input ring\\'"
|
|
122 ; "\\`No history\\'"
|
|
123 ; "\\`Not found\\'" ;; To common?
|
|
124 ; "\\`Current buffer has no process\\'"
|
209
|
125
|
272
|
126 ; ;; dabbrev
|
|
127 ; "\\`No \\(further \\)?dynamic expansion for .* found\\.?\\'"
|
209
|
128
|
272
|
129 ; ;; Completion
|
|
130 ; "\\`To complete, the point must be after a symbol at least [0-9]* character long\\.\\'"
|
|
131 ; "\\`The string \".*\" is too short to be saved as a completion\\.\\'"
|
209
|
132
|
272
|
133 ; ;; Compile
|
|
134 ; "\\`No more errors\\( yet\\|\\)\\'"
|
209
|
135
|
272
|
136 ; ;; Gnus
|
|
137 ; ;"\\`NNTP: Connection closed\\.\\'"
|
209
|
138
|
272
|
139 ; ;; info
|
|
140 ; "\\`Node has no Previous\\'"
|
|
141 ; "\\`No \".*\" in index\\'"
|
|
142
|
|
143 ; ;; imenu
|
|
144 ; ;"\\`No items suitable for an index found in this buffer\\.\\'"
|
|
145 ; ;"\\`The mode \".*\" does not take full advantage of imenu\\.el yet\\.\\'"
|
209
|
146
|
272
|
147 ; ;; ispell
|
|
148 ; "\\`No word found to check!\\'"
|
209
|
149
|
272
|
150 ; ;; man
|
|
151 ; "\\`.* not found\\'"
|
|
152 ; "\\`No more history\\.\\'"
|
209
|
153
|
272
|
154 ; ;; etags
|
|
155 ; "\\`File .* is not a valid tag table\\'"
|
|
156 ; "\\`File .* is not a valid tags file\\'"
|
|
157 ; "\\`All files processed\\.\\'"
|
|
158 ; "No TAGS file name supplied\\'"
|
|
159 ; "\\`Nothing to complete\\'"
|
209
|
160
|
272
|
161 ; ;; BBDB
|
|
162 ; "\\`no previous record\\'"
|
|
163 ; "\\`no next record\\'"))
|
209
|
164
|
|
165 (make-variable-buffer-local 'indent-tabs-mode)
|
|
166
|
|
167
|
|
168 ;;; Load in generated autoloads (made by autoload.el).
|
239
|
169
|
|
170 ;; (let ((dir load-path)
|
|
171 ;; purify-flag)
|
|
172 ;; (while dir
|
|
173 ;; (condition-case nil
|
|
174 ;; (load (concat (car dir) "auto-autoloads"))
|
|
175 ;; (t nil))
|
|
176 ;; (pop dir)))
|
209
|
177
|
|
178 ;;; Local Variables:
|
|
179 ;;; no-byte-compile: t
|
|
180 ;;; no-update-autoloads: t
|
|
181 ;;; End:
|
|
182 ;;; loaddefs.el ends here
|