1232
|
1 ;;; autoload.el --- maintain autoloads in auto-autoloads files.
|
428
|
2
|
|
3 ;; Copyright (C) 1991, 1992, 1993, 1994, 1997 Free Software Foundation, Inc.
|
|
4 ;; Copyright (C) 1995 Tinker Systems and INS Engineering Corp.
|
1298
|
5 ;; Copyright (C) 1996, 2000, 2002, 2003 Ben Wing.
|
428
|
6
|
|
7 ;; Author: Roland McGrath <roland@gnu.ai.mit.edu>
|
|
8 ;; Keywords: maint
|
|
9
|
|
10 ;; This file is part of XEmacs.
|
|
11
|
|
12 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
13 ;; under the terms of the GNU General Public License as published by
|
|
14 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
15 ;; any later version.
|
|
16
|
|
17 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
20 ;; General Public License for more details.
|
|
21
|
|
22 ;; You should have received a copy of the GNU General Public License
|
|
23 ;; along with XEmacs; see the file COPYING. If not, write to the Free
|
|
24 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
25 ;; 02111-1307, USA.
|
|
26
|
|
27 ;;; Synched up with: Not synched with FSF.
|
|
28
|
|
29 ;;; Commentary:
|
|
30
|
1232
|
31 ;; This code keeps auto-autoloads.el files up to date. It interprets
|
|
32 ;; magic cookies (of the form ";;;###autoload" in Lisp source files
|
|
33 ;; and "/* ###autoload */" in C source files) in various useful ways.
|
|
34
|
|
35 ;; Usage
|
|
36 ;; =====
|
|
37
|
|
38 ;; Recommended usage for this library, as implemented in the core
|
|
39 ;; build process, is
|
|
40
|
|
41 ;; xemacs -no-packages -batch \
|
|
42 ;; -eval "(setq generated-autoload-file \"PATH\")" \
|
|
43 ;; -l autoload -f autoload-update-directory-autoloads PREFIX DIRECTORY
|
|
44
|
|
45 ;; which causes XEmacs to update the file named by PATH from the .el
|
|
46 ;; files in DIRECTORY (but not recursing into subdirectories) and (if
|
|
47 ;; the autoload file is not already protected with a feature test) add
|
|
48 ;; a check and provide for 'PREFIX-autoloads. Currently there is no
|
|
49 ;; sanity check for the provided feature; it is recommended that you
|
|
50 ;; nuke any existing auto-autoloads.el before running the command.
|
|
51
|
|
52 ;; There is not yet a recommended API for updating multiple directories
|
|
53 ;; into a single auto-autoloads file. Using the recipe above for each
|
|
54 ;; DIRECTORY with the same PATH should work but has not been tested.
|
|
55 ;; There is no API for recursing into subdirectories. There probably
|
|
56 ;; won't be; given the wide variety of ways that existing Lisp packages
|
|
57 ;; arrange their files, and the fact that source packages and installed
|
|
58 ;; packages have a somewhat different directory structure, this seems far
|
|
59 ;; too risky. Use a script or a Lisp library with an explicit list of
|
|
60 ;; PATHs; see update-elc.el for how to do this without recursive invocation
|
|
61 ;; of XEmacs).
|
|
62
|
|
63 ;; The probable next step is to fix up the packages to use the
|
|
64 ;; `autoload-update-directory-autoloads' API. However, for backward
|
|
65 ;; compatibility with XEmacs 21.4 and 21.1, this can't be done quickly.
|
|
66
|
|
67 ;; For now the API used in update-elc-2.el:
|
|
68
|
|
69 ;; (let* ((dir "DIRECTORY")
|
|
70 ;; (generated-autoload-file (expand-file-name "auto-autoloads.el" dir))
|
|
71 ;; (autoload-package-name "PREFIX"))
|
|
72 ;; (update-autoload-files (list muledir))
|
|
73 ;; (byte-recompile-file generated-autoload-file 0))
|
|
74
|
|
75 ;; is available, but this ugly kludge is deprecated. It will be removed
|
|
76 ;; in favor of using proper arguments instead of special variables.
|
|
77
|
|
78 ;; For backward compatibility the API used in the packages/XEmacs.rules:
|
|
79
|
|
80 ;; xemacs -vanilla -batch -eval "$(AUTOLOAD_PACKAGE_NAME)" \
|
|
81 ;; -l autoload -f batch-update-directory $(AUTOLOAD_PATH)
|
|
82
|
|
83 ;; is supported, and the implementation is unchanged. However,
|
|
84 ;; revision of the API (in a backward compatible way) and the
|
|
85 ;; implementation are planned, and until those stabilize it is too
|
|
86 ;; risky to use this version of XEmacs for package releases.
|
|
87
|
|
88 ;; Implementation:
|
|
89 ;; ===============
|
|
90
|
|
91 ;; #### This section should be moved to the Internals manual, or
|
|
92 ;; (maybe) the Lispref, and integrated with the information above.
|
|
93 ;; Don't believe anything written here; the code is still a mess, and
|
|
94 ;; this is a lot of guesswork.
|
|
95
|
|
96 ;; Autoloads are used in a number of contexts, including core Lisp,
|
|
97 ;; packaged Lisp, and ELLs (dynamically loadable compiled objects
|
|
98 ;; providing Lisp functionality). There two general strategies for
|
|
99 ;; collecting autoloads. The first is to put autoloads for a package
|
|
100 ;; in a package-specific auto-autoloads file. This is easy to
|
|
101 ;; implement, and allows packages to be distributed with prebuilt
|
|
102 ;; auto-autoloads files. The second is to collect all the autoloads
|
|
103 ;; in a single global auto-autoloads file. This is alleged to speed
|
|
104 ;; up initialization significantly, but requires care to ensure that
|
|
105 ;; auto-autoloads files remain synchronized with the libraries.
|
|
106
|
|
107 ;; The traditional logic for determining where to put autoload
|
|
108 ;; definitions is complex and is now deprecated. The special variable
|
|
109 ;; `generated-autoload-file' is used to hold the path to the file, and
|
|
110 ;; is initialized to the traditional (well, it's a new tradition with
|
|
111 ;; XEmacs 20) $blddir/lisp/auto-autoloads.el. However, this variable
|
|
112 ;; may be bound by calling code, or may be generated at collect time
|
|
113 ;; and I'm not even sure the initialized value was ever used any more.
|
|
114
|
|
115 ;; Because there may be multiple auto-autoloads files in use (in XEmacs
|
|
116 ;; 21.x with a full complement of packages there are dozens), and they may
|
|
117 ;; contain initializations that would be dangerous to reexecute, each is
|
|
118 ;; protected by a feature test. By convention, the feature symbol is of
|
|
119 ;; the form "NAME-autoloads". For packages, the special variable
|
|
120 ;; `autoload-package-name' is used to determine NAME. In the core,
|
|
121 ;; autoloads are defined in the modules (all of which are collected in a
|
|
122 ;; single auto-autoloads file), using NAME=modules, in the lisp directory
|
|
123 ;; using NAME=lisp, and in the lisp/mule directory, using NAME=mule, for
|
|
124 ;; the autoloads feature. These latter are computed by the autoloads
|
|
125 ;; function at collect time.
|
428
|
126
|
|
127 ;; ChangeLog:
|
|
128
|
1232
|
129 ;; See ./ChangeLog.
|
428
|
130
|
|
131 ;;; Code:
|
|
132
|
1232
|
133 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
134 ;; Standard file and directory names
|
|
135
|
|
136 ;; `autoload-file-name' is defvar'd and initialized in packages.el,
|
|
137 ;; which is loaded (and dumped) very early. If you find it isn't, you
|
|
138 ;; know what you're doing.
|
|
139
|
|
140 (defconst autoload-target-directory "../lisp/"
|
|
141 "Standard directory containing autoload declaration file.
|
|
142
|
|
143 Use `generated-autoload-file' (q.v.) to change its installation location.")
|
|
144
|
|
145 ;; Dynamic variables for communication among functions
|
|
146
|
|
147 (defvar generated-autoload-file
|
|
148 (expand-file-name autoload-file-name lisp-directory)
|
|
149 "*File `update-file-autoloads' puts autoloads into.
|
|
150 A .el file can set this in its local variables section to make its
|
|
151 autoloads go somewhere else.
|
|
152
|
|
153 Note that `batch-update-directory' binds this variable to its own value,
|
|
154 generally the file named by `autoload-file-name' in the directory being
|
|
155 updated. XEmacs.rules setq's this variable for package autoloads.")
|
|
156
|
|
157 (define-obsolete-variable-alias 'autoload-package-name
|
|
158 'autoload-feature-prefix)
|
|
159 (defvar autoload-feature-prefix nil
|
|
160 "If non-nil, use this string to prefix the autoload feature name.
|
|
161
|
|
162 Usually a package name (from AUTOLOAD_PACKAGE_NAME, defined in XEmacs.rules
|
|
163 in the top of the package hierarchy), or \"auto\" (reserved for the core Lisp
|
|
164 auto-autoloads file). Highest priority candidate except for an explicit
|
|
165 argument to `autoload-make-feature-name' (q.v.).")
|
|
166
|
|
167 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
168 ;; Magic strings in source files
|
|
169
|
|
170 (defconst generate-autoload-cookie ";;;###autoload"
|
|
171 "Magic comment indicating the following form should be autoloaded.
|
|
172 Used by `update-file-autoloads'. This string should be
|
|
173 meaningless to Lisp (e.g., a comment).
|
|
174
|
|
175 This string is used:
|
|
176
|
|
177 ;;;###autoload
|
|
178 \(defun function-to-be-autoloaded () ...)
|
|
179
|
|
180 If this string appears alone on a line, the following form will be
|
|
181 read and an autoload made for it. If it is followed by the string
|
|
182 \"immediate\", then the form on the following line will be copied
|
|
183 verbatim. If there is further text on the line, that text will be
|
|
184 copied verbatim to `generated-autoload-file'.")
|
|
185
|
|
186 (defconst generate-c-autoload-cookie "/* ###autoload"
|
|
187 "Magic C comment indicating the following form should be autoloaded.
|
|
188 Used by `update-file-autoloads'. This string should be
|
|
189 meaningless to C (e.g., a comment).
|
|
190
|
|
191 This string is used:
|
|
192
|
|
193 /* ###autoload */
|
|
194 DEFUN (\"function-to-be-autoloaded\", ... )
|
|
195
|
|
196 If this string appears alone on a line, the following form will be
|
|
197 read and an autoload made for it. If there is further text on the line,
|
|
198 that text will be copied verbatim to `generated-autoload-file'.")
|
|
199
|
|
200 (defconst generate-c-autoload-module "/* ###module"
|
|
201 "Magic C comment indicating the module containing autoloaded functions.
|
|
202 Since a module can consist of multiple C files, the module name may not be
|
|
203 the same as the C source file base name. In that case, use this comment to
|
|
204 indicate the actual name of the module from which to autoload functions.")
|
|
205
|
|
206 (defconst generate-autoload-section-header "\f\n;;;### "
|
|
207 "String inserted before the form identifying
|
|
208 the section of autoloads for a file.")
|
|
209
|
|
210 (defconst generate-autoload-section-trailer "\n;;;***\n"
|
|
211 "String which indicates the end of the section of autoloads for a file.")
|
|
212
|
|
213 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
214 ;; Parsing the source file text.
|
|
215 ;; Autoloads in C source differ from those in Lisp source. For historical
|
|
216 ;; reasons, functions handling only Lisp don't have "lisp" in their names;
|
|
217 ;; maybe this should be changed.
|
|
218
|
428
|
219 (defun make-autoload (form file)
|
969
|
220 "Turn a definition generator FORM into an autoload for source file FILE.
|
|
221 Returns nil if FORM is not a defun, defun*, defmacro, defmacro*,
|
|
222 define-skeleton, or define-derived-mode."
|
428
|
223 (let ((car (car-safe form)))
|
778
|
224 (if (memq car '(defun defun* define-skeleton defmacro defmacro*
|
|
225 define-derived-mode))
|
|
226 (let ((macrop (memq car '(defmacro defmacro*)))
|
428
|
227 name doc)
|
|
228 (setq form (cdr form)
|
|
229 name (car form)
|
|
230 ;; Ignore the arguments.
|
646
|
231 form (cdr (cond ((eq car 'define-skeleton)
|
|
232 form)
|
|
233 ((eq car 'define-derived-mode)
|
|
234 (cddr form))
|
|
235 (t
|
|
236 (cdr form))))
|
428
|
237 doc (car form))
|
|
238 (if (stringp doc)
|
|
239 (setq form (cdr form))
|
|
240 (setq doc nil))
|
|
241 (list 'autoload (list 'quote name) file doc
|
|
242 (or (eq car 'define-skeleton)
|
646
|
243 (eq car 'define-derived-mode)
|
428
|
244 (eq (car-safe (car form)) 'interactive))
|
|
245 (if macrop (list 'quote 'macro) nil)))
|
|
246 nil)))
|
|
247
|
996
|
248 (defun make-c-autoload (module)
|
|
249 "Make an autoload list for the DEFUN at point in MODULE.
|
|
250 Returns nil if the DEFUN is malformed."
|
|
251 (and
|
|
252 ;; Match the DEFUN
|
|
253 (search-forward "DEFUN" nil t)
|
|
254 ;; Match the opening parenthesis
|
|
255 (progn
|
|
256 (skip-syntax-forward " ")
|
|
257 (eq (char-after) ?\())
|
|
258 ;; Match the opening quote of the Lisp function name
|
|
259 (progn
|
|
260 (forward-char)
|
|
261 (skip-syntax-forward " ")
|
|
262 (eq (char-after) ?\"))
|
|
263 ;; Extract the Lisp function name, interactive indicator, and docstring
|
|
264 (let* ((func-name (let ((begin (progn (forward-char) (point))))
|
|
265 (search-forward "\"" nil t)
|
|
266 (backward-char)
|
|
267 (intern (buffer-substring begin (point)))))
|
|
268 (interact (progn
|
|
269 (search-forward "," nil t 4)
|
|
270 (skip-syntax-forward " ")
|
|
271 (not (eq (char-after) ?0))))
|
|
272 (begin (progn
|
|
273 (search-forward "/*" nil t)
|
|
274 (forward-line 1)
|
|
275 (point))))
|
|
276 (search-forward "*/" nil t)
|
|
277 (goto-char (match-beginning 0))
|
|
278 (skip-chars-backward " \t\n\f")
|
|
279 (list 'autoload (list 'quote func-name) module
|
|
280 (buffer-substring begin (point)) interact nil))))
|
|
281
|
1232
|
282 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
283 ;; Generating autoloads for a single file
|
428
|
284
|
|
285 ;;;###autoload
|
|
286 (defun generate-file-autoloads (file &optional funlist)
|
1232
|
287 "Insert at point an autoload section for FILE.
|
428
|
288 autoloads are generated for defuns and defmacros in FILE
|
|
289 marked by `generate-autoload-cookie' (which see).
|
|
290 If FILE is being visited in a buffer, the contents of the buffer
|
|
291 are used."
|
|
292 (interactive "fGenerate autoloads for file: ")
|
1232
|
293 (cond ((string-match "\\.el$" file)
|
1298
|
294 (generate-autoload-ish-1
|
|
295 file
|
|
296 (replace-in-string (file-name-nondirectory file) "\\.elc?$" "")
|
|
297 nil #'generate-file-autoloads-1
|
|
298 funlist))
|
1232
|
299 ;; #### jj, are C++ modules possible?
|
|
300 ((string-match "\\.c$" file)
|
1298
|
301 (generate-autoload-ish-1
|
|
302 file
|
|
303 (replace-in-string (file-name-nondirectory file) "\\.c$" "")
|
|
304 t #'generate-c-file-autoloads-1))
|
1232
|
305 (t
|
|
306 (error 'wrong-type-argument file "not a C or Elisp source file"))))
|
428
|
307
|
1298
|
308 (defun* generate-autoload-ish-1 (file load-name literal fun-to-call &rest args)
|
|
309 "Insert at point an autoload-type section for FILE.
|
|
310 If LITERAL, open the file literally, without decoding.
|
|
311 Calls FUN-TO-CALL to compute the autoloads, passing it OUTBUF, LOAD-NAME,
|
|
312 TRIM-NAME, and ARGS."
|
428
|
313 (let ((outbuf (current-buffer))
|
1298
|
314 (trim-name (autoload-trim-file-name file))
|
428
|
315 (autoloads-done '())
|
|
316 (print-length nil)
|
|
317 (print-readably t) ; XEmacs
|
|
318 (float-output-format nil)
|
1298
|
319 (visited (get-file-buffer file))
|
428
|
320 ;; (done-any nil)
|
|
321 output-end)
|
|
322
|
|
323 ;; If the autoload section we create here uses an absolute
|
|
324 ;; pathname for FILE in its header, and then Emacs is installed
|
|
325 ;; under a different path on another system,
|
|
326 ;; `update-autoloads-here' won't be able to find the files to be
|
|
327 ;; autoloaded. So, if FILE is in the same directory or a
|
|
328 ;; subdirectory of the current buffer's directory, we'll make it
|
|
329 ;; relative to the current buffer's directory.
|
|
330 (setq file (expand-file-name file))
|
|
331
|
|
332 (save-excursion
|
|
333 (unwind-protect
|
|
334 (progn
|
|
335 (let ((find-file-hooks nil)
|
|
336 (enable-local-variables nil))
|
1298
|
337 (set-buffer (or visited (find-file-noselect file literal literal
|
|
338 )))
|
|
339 ;; This doesn't look right for C files, but it is. The only
|
|
340 ;; place we need the syntax table is when snarfing the Lisp
|
|
341 ;; function name.
|
460
|
342 (set-syntax-table emacs-lisp-mode-syntax-table))
|
1298
|
343 (unless (setq autoloads-done
|
|
344 (apply fun-to-call outbuf load-name trim-name args))
|
|
345 (return-from generate-autoload-ish-1))
|
|
346 )
|
428
|
347 (unless visited
|
1298
|
348 ;; We created this buffer, so we should kill it.
|
|
349 (kill-buffer (current-buffer)))
|
428
|
350 (set-buffer outbuf)
|
|
351 (setq output-end (point-marker))))
|
|
352 (if t ;; done-any
|
|
353 ;; XEmacs -- always do this so that we cache the information
|
|
354 ;; that we've processed the file already.
|
|
355 (progn
|
|
356 (insert generate-autoload-section-header)
|
|
357 (prin1 (list 'autoloads autoloads-done load-name trim-name)
|
|
358 outbuf)
|
|
359 (terpri outbuf)
|
|
360 ;;;; (insert ";;; Generated autoloads from "
|
|
361 ;;;; (autoload-trim-file-name file) "\n")
|
1232
|
362 ;; Warn if we put a line in auto-autoloads.el
|
428
|
363 ;; that is long enough to cause trouble.
|
|
364 (when (< output-end (point))
|
|
365 (setq output-end (point-marker)))
|
|
366 (while (< (point) output-end)
|
|
367 ;; (let ((beg (point)))
|
|
368 (end-of-line)
|
|
369 ;; Emacs -- I still haven't figured this one out.
|
|
370 ;; (if (> (- (point) beg) 900)
|
|
371 ;; (progn
|
|
372 ;; (message "A line is too long--over 900 characters")
|
|
373 ;; (sleep-for 2)
|
|
374 ;; (goto-char output-end)))
|
|
375 ;; )
|
|
376 (forward-line 1))
|
|
377 (goto-char output-end)
|
|
378 (insert generate-autoload-section-trailer)))
|
|
379 (or noninteractive ; XEmacs: only need one line in -batch mode.
|
|
380 (message "Generating autoloads for %s...done" file))))
|
|
381
|
1298
|
382 (defun* generate-file-autoloads-1 (outbuf load-name trim-name funlist)
|
|
383 "Insert at point an autoload section for FILE.
|
|
384 autoloads are generated for defuns and defmacros in FILE
|
|
385 marked by `generate-autoload-cookie' (which see).
|
|
386 If FILE is being visited in a buffer, the contents of the buffer
|
|
387 are used."
|
|
388 (let ((autoloads-done '())
|
|
389 (dofiles (not (null funlist)))
|
|
390 )
|
|
391
|
|
392 (save-excursion
|
|
393 (save-restriction
|
|
394 (widen)
|
|
395 (goto-char (point-min))
|
|
396 (unless (search-forward generate-autoload-cookie nil t)
|
|
397 (message "No autoloads found in %s" trim-name)
|
|
398 (return-from generate-file-autoloads-1 nil))
|
|
399
|
|
400 (message "Generating autoloads for %s..." trim-name)
|
|
401 (goto-char (point-min))
|
|
402 (while (if dofiles funlist (not (eobp)))
|
|
403 (if (not dofiles)
|
|
404 (skip-chars-forward " \t\n\f")
|
|
405 (goto-char (point-min))
|
|
406 (re-search-forward
|
|
407 (concat "(def\\(un\\|var\\|const\\|macro\\) "
|
|
408 (regexp-quote (symbol-name (car funlist)))
|
|
409 "\\s "))
|
|
410 (goto-char (match-beginning 0)))
|
|
411 (cond
|
|
412 ((or dofiles
|
|
413 (looking-at (regexp-quote generate-autoload-cookie)))
|
|
414 (if dofiles
|
|
415 nil
|
|
416 (search-forward generate-autoload-cookie)
|
|
417 (skip-chars-forward " \t"))
|
|
418 ;; (setq done-any t)
|
|
419 (if (or dofiles (eolp))
|
|
420 ;; Read the next form and make an autoload.
|
|
421 (let* ((form (prog1 (read (current-buffer))
|
|
422 (or (bolp) (forward-line 1))))
|
|
423 (autoload (make-autoload form load-name))
|
|
424 (doc-string-elt (get (car-safe form)
|
|
425 'doc-string-elt)))
|
|
426 (if autoload
|
|
427 (setq autoloads-done (cons (nth 1 form)
|
|
428 autoloads-done))
|
|
429 (setq autoload form))
|
|
430 (print-autoload autoload doc-string-elt outbuf ""))
|
|
431 ;; Copy the rest of the line to the output.
|
|
432 (let ((begin (point)))
|
|
433 ;; (terpri outbuf)
|
|
434 (cond ((looking-at "immediate\\s *$") ; XEmacs
|
|
435 ;; This is here so that you can automatically
|
|
436 ;; have small hook functions copied to
|
|
437 ;; auto-autoloads.el so that it's not necessary
|
|
438 ;; to load a whole file just to get a two-line
|
|
439 ;; do-nothing find-file-hook... --Stig
|
|
440 (forward-line 1)
|
|
441 (setq begin (point))
|
|
442 (forward-sexp)
|
|
443 (forward-line 1))
|
|
444 (t
|
|
445 (forward-line 1)))
|
|
446 (princ (buffer-substring begin (point)) outbuf))))
|
|
447 ((looking-at ";")
|
|
448 ;; Don't read the comment.
|
|
449 (forward-line 1))
|
|
450 (t
|
|
451 (forward-sexp 1)
|
|
452 (forward-line 1)))
|
|
453 (if dofiles
|
|
454 (setq funlist (cdr funlist))))))
|
|
455 autoloads-done))
|
|
456
|
|
457 (defun* generate-c-file-autoloads-1 (outbuf load-name trim-name funlist)
|
1232
|
458 "Insert at point an autoload section for the C file FILE.
|
1048
|
459 autoloads are generated for defuns and defmacros in FILE
|
996
|
460 marked by `generate-c-autoload-cookie' (which see).
|
|
461 If FILE is being visited in a buffer, the contents of the buffer
|
|
462 are used."
|
1298
|
463 (let ((exists-p-format
|
1232
|
464 "(file-exists-p (expand-file-name \"%s.%s\" module-directory))")
|
1298
|
465 (autoloads-done '())
|
|
466 )
|
996
|
467
|
|
468 (save-excursion
|
1298
|
469 (save-restriction
|
|
470 (widen)
|
|
471 (goto-char (point-min))
|
|
472 ;; Is there a module name comment?
|
|
473 (when (search-forward generate-c-autoload-module nil t)
|
|
474 (skip-chars-forward " \t")
|
|
475 (let ((begin (point)))
|
|
476 (skip-chars-forward "^ \t\n\f")
|
|
477 (setq load-name (buffer-substring begin (point)))))
|
|
478 (if funlist
|
|
479 (progn
|
|
480 (message "Generating autoloads for %s..." trim-name)
|
|
481 (princ "(when (or\n " outbuf)
|
|
482 (princ (format exists-p-format load-name "ell") outbuf)
|
|
483 (princ "\n " outbuf)
|
|
484 (princ (format exists-p-format load-name "dll") outbuf)
|
|
485 (princ "\n " outbuf)
|
|
486 (princ (format exists-p-format load-name "so") outbuf)
|
|
487 ;; close the princ'd `or' form
|
|
488 (princ ")\n " outbuf)
|
|
489 (dolist (arg funlist)
|
996
|
490 (goto-char (point-min))
|
1298
|
491 (re-search-forward
|
|
492 (concat "DEFUN (\""
|
|
493 (regexp-quote (symbol-name arg))
|
|
494 "\""))
|
|
495 (goto-char (match-beginning 0))
|
|
496 (let ((autoload (make-c-autoload load-name)))
|
|
497 (when autoload
|
|
498 (push (nth 1 (nth 1 autoload)) autoloads-done)
|
|
499 (print-autoload autoload 3 outbuf " "))))
|
|
500 ;; close the princ'd `when' form
|
|
501 (princ ")" outbuf))
|
|
502 (goto-char (point-min))
|
|
503 (let ((match
|
|
504 (search-forward generate-c-autoload-cookie nil t)))
|
|
505 (unless match
|
|
506 (message "No autoloads found in %s" trim-name)
|
|
507 (return-from generate-c-file-autoloads-1 nil))
|
|
508
|
|
509 (message "Generating autoloads for %s..." trim-name)
|
|
510 (princ "(when (or\n " outbuf)
|
|
511 (princ (format exists-p-format load-name "ell") outbuf)
|
|
512 (princ "\n " outbuf)
|
|
513 (princ (format exists-p-format load-name "dll") outbuf)
|
|
514 (princ "\n " outbuf)
|
|
515 (princ (format exists-p-format load-name "so") outbuf)
|
|
516 ;; close the princ'd `or' form
|
|
517 (princ ")\n " outbuf)
|
|
518 (while match
|
|
519 (forward-line 1)
|
|
520 (let ((autoload (make-c-autoload load-name)))
|
|
521 (when autoload
|
|
522 (push (nth 1 (nth 1 autoload)) autoloads-done)
|
|
523 (print-autoload autoload 3 outbuf " ")))
|
|
524 (setq match
|
|
525 (search-forward generate-c-autoload-cookie nil t)))
|
|
526 ;; close the princ'd `when' form
|
|
527 (princ ")" outbuf)))))
|
|
528 autoloads-done))
|
996
|
529
|
1232
|
530 ;; Assorted utilities for generating autoloads and pieces thereof
|
|
531
|
1048
|
532 (defun print-autoload (autoload doc-string-elt outbuf margin)
|
996
|
533 "Print an autoload form, handling special characters.
|
|
534 In particular, print docstrings with escapes inserted before left parentheses
|
|
535 at the beginning of lines and ^L characters."
|
|
536 (if (and doc-string-elt (stringp (nth doc-string-elt autoload)))
|
|
537 ;; We need to hack the printing because the doc-string must be
|
|
538 ;; printed specially for make-docfile (sigh).
|
|
539 (let* ((p (nthcdr (1- doc-string-elt) autoload))
|
1048
|
540 (elt (cdr p))
|
|
541 (start-string (format "\n%s(" margin)))
|
996
|
542 (setcdr p nil)
|
1048
|
543 (princ start-string outbuf)
|
996
|
544 ;; XEmacs change: don't let ^^L's get into
|
|
545 ;; the file or sorting is hard.
|
|
546 (let ((print-escape-newlines t)
|
|
547 (p (save-excursion
|
|
548 (set-buffer outbuf)
|
|
549 (point)))
|
|
550 p2)
|
|
551 (mapcar #'(lambda (elt)
|
|
552 (prin1 elt outbuf)
|
|
553 (princ " " outbuf))
|
|
554 autoload)
|
|
555 (save-excursion
|
|
556 (set-buffer outbuf)
|
|
557 (setq p2 (point-marker))
|
|
558 (goto-char p)
|
|
559 (save-match-data
|
|
560 (while (search-forward "\^L" p2 t)
|
|
561 (delete-char -1)
|
|
562 (insert "\\^L")))
|
|
563 (goto-char p2)))
|
|
564 (princ "\"\\\n" outbuf)
|
|
565 (let ((begin (save-excursion
|
|
566 (set-buffer outbuf)
|
|
567 (point))))
|
|
568 (princ (substring (prin1-to-string (car elt)) 1) outbuf)
|
|
569 ;; Insert a backslash before each ( that appears at the beginning
|
|
570 ;; of a line in the doc string.
|
|
571 (save-excursion
|
|
572 (set-buffer outbuf)
|
|
573 (save-excursion
|
1048
|
574 (while (search-backward start-string begin t)
|
996
|
575 (forward-char 1)
|
|
576 (insert "\\"))))
|
|
577 (if (null (cdr elt))
|
|
578 (princ ")" outbuf)
|
|
579 (princ " " outbuf)
|
|
580 (princ (substring (prin1-to-string (cdr elt)) 1) outbuf))
|
1048
|
581 (terpri outbuf)
|
|
582 (princ margin outbuf)))
|
996
|
583 ;; XEmacs change: another ^L hack
|
|
584 (let ((p (save-excursion
|
|
585 (set-buffer outbuf)
|
|
586 (point)))
|
|
587 (print-escape-newlines t)
|
|
588 p2)
|
|
589 (print autoload outbuf)
|
|
590 (save-excursion
|
|
591 (set-buffer outbuf)
|
|
592 (setq p2 (point-marker))
|
|
593 (goto-char p)
|
|
594 (save-match-data
|
|
595 (while (search-forward "\^L" p2 t)
|
|
596 (delete-char -1)
|
|
597 (insert "\\^L")))
|
|
598 (goto-char p2)))))
|
|
599
|
1232
|
600 ;;; Forms which have doc-strings which should be printed specially.
|
|
601 ;;; A doc-string-elt property of ELT says that (nth ELT FORM) is
|
|
602 ;;; the doc-string in FORM.
|
|
603 ;;;
|
|
604 ;;; defvar and defconst should be also be marked in this way. There is
|
|
605 ;;; no interference from make-docfile, which only processes those files
|
|
606 ;;; that are loaded into the dumped Emacs, and those files should
|
|
607 ;;; never have anything autoloaded here. Problems only occur with files
|
|
608 ;;; which have autoloaded entries *and* are processed by make-docfile;
|
|
609 ;;; there should be no such files.
|
428
|
610
|
1232
|
611 (put 'autoload 'doc-string-elt 3)
|
|
612 (put 'defun 'doc-string-elt 3)
|
|
613 (put 'defun* 'doc-string-elt 3)
|
|
614 (put 'defvar 'doc-string-elt 3)
|
|
615 (put 'defconst 'doc-string-elt 3)
|
|
616 (put 'defmacro 'doc-string-elt 3)
|
|
617 (put 'defmacro* 'doc-string-elt 3)
|
|
618 (put 'define-skeleton 'doc-string-elt 3)
|
|
619 (put 'define-derived-mode 'doc-string-elt 4)
|
442
|
620
|
1232
|
621 (defun autoload-trim-file-name (file)
|
|
622 "Returns relative pathname of FILE including the last directory.
|
428
|
623
|
1232
|
624 Hard-codes the directory separator as a forward slash."
|
|
625 (setq file (expand-file-name file))
|
|
626 (replace-in-string
|
|
627 (file-relative-name file (file-name-directory
|
|
628 (directory-file-name
|
|
629 (file-name-directory file))))
|
|
630 ;; #### is this a good idea?
|
|
631 "\\\\" "/"))
|
428
|
632
|
|
633 ;;;###autoload
|
|
634 (defun update-file-autoloads (file)
|
|
635 "Update the autoloads for FILE in `generated-autoload-file'
|
|
636 \(which FILE might bind in its local variables).
|
1232
|
637 This function is a no-op for an autoloads file (ie, a file whose name is
|
|
638 equal to `autoload-file-name')."
|
428
|
639 (interactive "fUpdate autoloads for file: ")
|
|
640 (setq file (expand-file-name file))
|
|
641 (when (and (file-newer-than-file-p file generated-autoload-file)
|
|
642 (not (member (file-name-nondirectory file)
|
|
643 (list autoload-file-name))))
|
|
644
|
|
645 (let ((load-name (replace-in-string (file-name-nondirectory file)
|
996
|
646 "\\.\\(elc?\\|c\\)$"
|
428
|
647 ""))
|
|
648 (trim-name (autoload-trim-file-name file))
|
|
649 section-begin form)
|
|
650 (save-excursion
|
|
651 (let ((find-file-hooks nil))
|
|
652 (set-buffer (or (get-file-buffer generated-autoload-file)
|
|
653 (find-file-noselect generated-autoload-file))))
|
|
654 ;; Make sure we can scribble in it.
|
|
655 (setq buffer-read-only nil)
|
|
656 ;; First delete all sections for this file.
|
|
657 (goto-char (point-min))
|
|
658 (while (search-forward generate-autoload-section-header nil t)
|
|
659 (setq section-begin (match-beginning 0))
|
|
660 (setq form (read (current-buffer)))
|
|
661 (when (string= (nth 2 form) load-name)
|
|
662 (search-forward generate-autoload-section-trailer)
|
|
663 (delete-region section-begin (point))))
|
|
664
|
|
665 ;; Now find insertion point for new section
|
|
666 (block find-insertion-point
|
|
667 (goto-char (point-min))
|
|
668 (while (search-forward generate-autoload-section-header nil t)
|
|
669 (setq form (read (current-buffer)))
|
|
670 (when (string< trim-name (nth 3 form))
|
|
671 ;; Found alphabetically correct insertion point
|
|
672 (goto-char (match-beginning 0))
|
|
673 (return-from find-insertion-point))
|
|
674 (search-forward generate-autoload-section-trailer))
|
|
675 (when (eq (point) (point-min)) ; No existing entries?
|
|
676 (goto-char (point-max)))) ; Append.
|
|
677
|
|
678 ;; Add in new sections for file
|
|
679 (generate-file-autoloads file))
|
|
680
|
|
681 (when (interactive-p) (save-buffer)))))
|
|
682
|
|
683 ;;;###autoload
|
|
684 (defun update-autoloads-here ()
|
|
685 "Update sections of the current buffer generated by `update-file-autoloads'."
|
|
686 (interactive)
|
|
687 (let ((generated-autoload-file (buffer-file-name)))
|
|
688 (save-excursion
|
|
689 (goto-char (point-min))
|
|
690 (while (search-forward generate-autoload-section-header nil t)
|
|
691 (let* ((form (condition-case ()
|
|
692 (read (current-buffer))
|
|
693 (end-of-file nil)))
|
|
694 (file (nth 3 form)))
|
|
695 ;; XEmacs change: if we can't find the file as specified, look
|
|
696 ;; around a bit more.
|
|
697 (cond ((and (stringp file)
|
|
698 (or (get-file-buffer file)
|
|
699 (file-exists-p file))))
|
|
700 ((and (stringp file)
|
|
701 (save-match-data
|
|
702 (let ((loc (locate-file (file-name-nondirectory file)
|
|
703 load-path)))
|
|
704 (if (null loc)
|
|
705 nil
|
|
706 (setq loc (expand-file-name
|
|
707 (autoload-trim-file-name loc)
|
|
708 ".."))
|
|
709 (if (or (get-file-buffer loc)
|
|
710 (file-exists-p loc))
|
|
711 (setq file loc)
|
|
712 nil))))))
|
|
713 (t
|
|
714 (setq file
|
|
715 (if (y-or-n-p
|
|
716 (format
|
|
717 "Can't find library `%s'; remove its autoloads? "
|
|
718 (nth 2 form) file))
|
|
719 t
|
|
720 (condition-case ()
|
|
721 (read-file-name
|
|
722 (format "Find `%s' load file: "
|
|
723 (nth 2 form))
|
|
724 nil nil t)
|
|
725 (quit nil))))))
|
|
726 (if file
|
|
727 (let ((begin (match-beginning 0)))
|
|
728 (search-forward generate-autoload-section-trailer)
|
|
729 (delete-region begin (point))))
|
|
730 (if (stringp file)
|
|
731 (generate-file-autoloads file)))))))
|
|
732
|
1232
|
733 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
734 ;; Utilities for batch updates
|
|
735
|
|
736 ;;;###autoload
|
|
737 (defun autoload-update-directory-autoloads ()
|
|
738 "Update the autoloads for a directory, using a specified feature prefix.
|
|
739 Must be used only with -batch. The feature prefix and directory to update
|
|
740 are taken from the first and second elements of `command-line-args-left',
|
|
741 respectively, and they are then removed from `command-line-args-left'.
|
|
742
|
|
743 Runs `update-file-autoloads' on each file in the given directory. Always
|
|
744 rewrites the autoloads file, even if unchanged. Makes a feature name by
|
|
745 applying `autoload-make-feature-name' to the specified feature prefix.
|
|
746
|
|
747 #### The API and semantics of this function are subject to change."
|
|
748 (unless noninteractive
|
|
749 (error "autoload-batch-update-autoloads: may be used only with -batch"))
|
|
750 (let* ((autoload-feature-prefix (car command-line-args-left))
|
|
751 (dir (cadr command-line-args-left))
|
|
752 (generated-autoload-file (expand-file-name autoload-file-name dir)))
|
|
753 (update-autoload-files (list dir) t t)
|
|
754 (setq command-line-args-left (cddr command-line-args-left))))
|
|
755
|
|
756 ;;;###autoload
|
|
757 (defun update-autoload-files (files-or-dirs &optional all-into-one-file force)
|
|
758 "Update all the autoload files associated with FILES-OR-DIRS.
|
|
759 FILES-OR-DIRS is a list of files and/or directories to be processed.
|
|
760
|
|
761 An appropriate autoload file is chosen and a feature constructed for
|
|
762 each element of FILES-OR-DIRS. Fixup code testing for the autoload file's
|
|
763 feature and to provide the feature is added.
|
|
764
|
|
765 If optional ALL-INTO-ONE-FILE is non-`nil', `generated-autoload-file'
|
|
766 should be set to the name of an autoload file and all autoloads will be
|
|
767 placed in that file. `autoload-feature-prefix' should be set to an
|
|
768 appropriate prefix which will be concatenated with \"-autoloads\" to
|
|
769 produce the feature name. Otherwise the appropriate autoload file for
|
|
770 each file or directory (located in that directory, or in the directory of
|
|
771 the specified file) will be updated with the directory's or file's
|
|
772 autoloads and the protective forms will be added, and the files will be
|
|
773 saved. Use of the default here is unreliable, and therefore deprecated.
|
|
774
|
|
775 Note that if some of FILES-OR-DIRS are directories, recursion goes only
|
|
776 one level deep.
|
|
777
|
|
778 If FORCE is non-nil, always save out the autoload files even if unchanged."
|
|
779 (let ((defdir (directory-file-name default-directory))
|
|
780 ;; value for all-into-one-file
|
|
781 (autoload-feature-name (autoload-make-feature-name))
|
|
782 (enable-local-eval nil)) ; Don't query in batch mode.
|
|
783 (dolist (arg files-or-dirs)
|
|
784 (setq arg (expand-file-name arg defdir))
|
|
785 (cond
|
|
786 ((file-directory-p arg)
|
|
787 (message "Updating autoloads for directory %s..." arg)
|
|
788 (update-autoloads-from-directory arg))
|
|
789 ((file-exists-p arg)
|
|
790 (update-file-autoloads arg))
|
|
791 (t (error "No such file or directory: %s" arg)))
|
|
792 (when (not all-into-one-file)
|
|
793 (autoload-featurep-protect-autoloads
|
|
794 (autoload-make-feature-name
|
|
795 (file-name-nondirectory (directory-file-name arg))))
|
|
796 (if force (set-buffer-modified-p
|
|
797 t (find-file-noselect generated-autoload-file)))))
|
|
798 (when all-into-one-file
|
|
799 (autoload-featurep-protect-autoloads autoload-feature-name)
|
|
800 (if force (set-buffer-modified-p
|
|
801 t (find-file-noselect generated-autoload-file))))
|
|
802 (save-some-buffers t)
|
|
803 ))
|
|
804
|
428
|
805 ;;;###autoload
|
|
806 (defun update-autoloads-from-directory (dir)
|
|
807 "Update `generated-autoload-file' with all the current autoloads from DIR.
|
996
|
808 This runs `update-file-autoloads' on each .el and .c file in DIR.
|
442
|
809 Obsolete autoload entries for files that no longer exist are deleted.
|
|
810 Note that, if this function is called from `batch-update-directory',
|
528
|
811 `generated-autoload-file' was rebound in that function.
|
|
812
|
|
813 You don't really want to be calling this function. Try using
|
|
814 `update-autoload-files' instead."
|
428
|
815 (interactive "DUpdate autoloads for directory: ")
|
|
816 (setq dir (expand-file-name dir))
|
|
817 (let ((simple-dir (file-name-as-directory
|
|
818 (file-name-nondirectory
|
1232
|
819 (directory-file-name dir))))
|
428
|
820 (enable-local-eval nil))
|
|
821 (save-excursion
|
|
822 (let ((find-file-hooks nil))
|
|
823 (set-buffer (find-file-noselect generated-autoload-file)))
|
|
824 (goto-char (point-min))
|
|
825 (while (search-forward generate-autoload-section-header nil t)
|
|
826 (let* ((begin (match-beginning 0))
|
|
827 (form (condition-case ()
|
|
828 (read (current-buffer))
|
|
829 (end-of-file nil)))
|
|
830 (file (nth 3 form)))
|
|
831 (when (and (stringp file)
|
|
832 (string= (file-name-directory file) simple-dir)
|
|
833 (not (file-exists-p
|
|
834 (expand-file-name
|
|
835 (file-name-nondirectory file) dir))))
|
|
836 ;; Remove the obsolete section.
|
|
837 (search-forward generate-autoload-section-trailer)
|
|
838 (delete-region begin (point)))))
|
|
839 ;; Update or create autoload sections for existing files.
|
996
|
840 (mapcar 'update-file-autoloads
|
|
841 (directory-files dir t "^[^=].*\\.\\(el\\|c\\)$"))
|
428
|
842 (unless noninteractive
|
|
843 (save-buffer)))))
|
|
844
|
1232
|
845 (defun autoload-featurep-protect-autoloads (sym)
|
428
|
846 (save-excursion
|
|
847 (set-buffer (find-file-noselect generated-autoload-file))
|
|
848 (goto-char (point-min))
|
|
849 (if (and (not (= (point-min) (point-max)))
|
|
850 (not (looking-at ";;; DO NOT MODIFY THIS FILE")))
|
|
851 (progn
|
|
852 (insert ";;; DO NOT MODIFY THIS FILE\n")
|
|
853 (insert "(if (featurep '" sym ")")
|
|
854 (insert " (error \"Already loaded\"))\n")
|
|
855 (goto-char (point-max))
|
|
856 (insert "\n(provide '" sym ")\n")))))
|
|
857
|
1232
|
858 (defun autoload-make-feature-name (&optional prefix)
|
|
859 "Generate the feature name to protect this auto-autoloads file from PREFIX.
|
428
|
860
|
1232
|
861 If PREFIX is nil, it defaults to the value of `autoload-feature-prefix' if
|
|
862 that is non-nil.
|
|
863
|
|
864 The feature name must be globally unique for this version of XEmacs,
|
|
865 including packages.
|
528
|
866
|
1232
|
867 For backward compatibility, if PREFIX and `autoload-feature-prefix' are both
|
|
868 `nil', PREFIX is computed as the last directory component of
|
|
869 `generated-autoload-file'. This is likely to result in non-uniqueness, so
|
|
870 do not use this feature."
|
|
871 (concat
|
|
872 (cond (prefix)
|
|
873 (autoload-feature-prefix)
|
|
874 ((stringp generated-autoload-file)
|
|
875 (message "Warning: autoload computing feature prefix.
|
|
876 You should specify it as an argument to `autoload-make-feature-name'.")
|
|
877 (file-name-nondirectory
|
|
878 (directory-file-name
|
|
879 (file-name-directory generated-autoload-file))))
|
|
880 (t (error 'invalid-argument
|
|
881 "Could not compute a feature name")))
|
|
882 "-autoloads"))
|
|
883
|
|
884 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
885 ;; Deprecated entry points
|
|
886
|
|
887 ;; A grep of the core and packages shows use of `batch-update-autoloads'
|
|
888 ;; by XEmacs.rules, pcomplete, eshell, oort-gnus; `batch-update-directory'
|
|
889 ;; by liece.
|
528
|
890
|
|
891 ;; #### these entry points below are a big mess, especially the
|
|
892 ;; first two. there don't seem to be very many packages that use the
|
|
893 ;; first one (the "all-into-one-file" variety), and do they actually
|
|
894 ;; rely on this functionality? --ben
|
1232
|
895 ;; but XEmacs.rules does, though maybe it doesn't "rely" on it, and
|
|
896 ;; modules do now, and that relies on it. --sjt
|
528
|
897
|
|
898 ;;;###autoload
|
|
899 (defun batch-update-autoloads ()
|
|
900 "Update the autoloads for the files or directories on the command line.
|
|
901 Runs `update-file-autoloads' on files and `update-directory-autoloads'
|
|
902 on directories. Must be used only with -batch, and kills Emacs on completion.
|
|
903 Each file will be processed even if an error occurred previously.
|
|
904 For example, invoke `xemacs -batch -f batch-update-autoloads *.el'.
|
|
905 The directory to which the auto-autoloads.el file must be the first parameter
|
|
906 on the command line."
|
|
907 (unless noninteractive
|
|
908 (error "batch-update-autoloads is to be used only with -batch"))
|
|
909 (update-autoload-files command-line-args-left t)
|
|
910 (kill-emacs 0))
|
442
|
911
|
428
|
912 ;;;###autoload
|
|
913 (defun batch-update-directory ()
|
442
|
914 "Update the autoloads for the directories on the command line.
|
|
915 Runs `update-file-autoloads' on each file in the given directory, and must
|
1232
|
916 be used only with -batch.
|
|
917
|
|
918 Uses and removes the first element of `command-line-args-left'."
|
428
|
919 (unless noninteractive
|
|
920 (error "batch-update-directory is to be used only with -batch"))
|
528
|
921 (update-autoload-files command-line-args-left)
|
|
922 ;; (kill-emacs 0)
|
|
923 (setq command-line-args-left nil))
|
442
|
924
|
|
925 ;;;###autoload
|
|
926 (defun batch-update-one-directory ()
|
|
927 "Update the autoloads for a single directory on the command line.
|
|
928 Runs `update-file-autoloads' on each file in the given directory, and must
|
|
929 be used only with -batch."
|
|
930 (unless noninteractive
|
1232
|
931 (error "batch-update-one-directory is to be used only with -batch"))
|
528
|
932 (let ((arg (car command-line-args-left)))
|
|
933 (setq command-line-args-left (cdr command-line-args-left))
|
|
934 (update-autoload-files (list arg))))
|
|
935
|
|
936 ;;;###autoload
|
|
937 (defun batch-force-update-one-directory ()
|
|
938 "Update the autoloads for a single directory on the command line.
|
|
939 Runs `update-file-autoloads' on each file in the given directory, and must
|
1232
|
940 be used only with -batch. Always rewrites the autoloads file, even if
|
|
941 unchanged.
|
|
942
|
|
943 Uses and removes the first element of `command-line-args-left'."
|
528
|
944 (unless noninteractive
|
1232
|
945 (error "batch-force-update-directory is to be used only with -batch"))
|
528
|
946 (let ((arg (car command-line-args-left)))
|
|
947 (setq command-line-args-left (cdr command-line-args-left))
|
546
|
948 (update-autoload-files (list arg) nil t)))
|
442
|
949
|
1232
|
950 ;; Declare obsolescence
|
|
951
|
|
952 (make-obsolete-variable 'autoload-target-directory
|
|
953 "Don't use this. Bind `generated-autoload-file' to an absolute path.")
|
|
954 (make-obsolete 'batch-update-autoloads
|
|
955 'autoload-update-directory-autoloads)
|
|
956 (make-obsolete 'batch-update-directory
|
|
957 'autoload-update-directory-autoloads)
|
|
958 (make-obsolete 'batch-update-one-directory
|
|
959 'autoload-update-directory-autoloads)
|
|
960 (make-obsolete 'batch-force-update-one-directory
|
|
961 'autoload-update-directory-autoloads)
|
|
962
|
428
|
963 (provide 'autoload)
|
|
964
|
|
965 ;;; autoload.el ends here
|