428
+ − 1 ;;; autoload.el --- maintain autoloads in loaddefs.el.
+ − 2
+ − 3 ;; Copyright (C) 1991, 1992, 1993, 1994, 1997 Free Software Foundation, Inc.
+ − 4 ;; Copyright (C) 1995 Tinker Systems and INS Engineering Corp.
778
+ − 5 ;; Copyright (C) 1996, 2000, 2002 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
613
+ − 31 ;; This code helps XEmacs maintainers keep the loaddefs.el file up to
428
+ − 32 ;; date. It interprets magic cookies of the form ";;;###autoload" in
+ − 33 ;; lisp source files in various useful ways. To learn more, read the
+ − 34 ;; source; if you're going to use this, you'd better be able to.
+ − 35
+ − 36 ;; ChangeLog:
+ − 37
996
+ − 38 ;; Jun-25-2002: Jerry James added code for processing C files, to
+ − 39 ;; support modularization
428
+ − 40 ;; Sep-26-1997: slb removed code dealing with customization.
+ − 41
+ − 42 ;;; Code:
+ − 43
+ − 44 (defun make-autoload (form file)
969
+ − 45 "Turn a definition generator FORM into an autoload for source file FILE.
+ − 46 Returns nil if FORM is not a defun, defun*, defmacro, defmacro*,
+ − 47 define-skeleton, or define-derived-mode."
428
+ − 48 (let ((car (car-safe form)))
778
+ − 49 (if (memq car '(defun defun* define-skeleton defmacro defmacro*
+ − 50 define-derived-mode))
+ − 51 (let ((macrop (memq car '(defmacro defmacro*)))
428
+ − 52 name doc)
+ − 53 (setq form (cdr form)
+ − 54 name (car form)
+ − 55 ;; Ignore the arguments.
646
+ − 56 form (cdr (cond ((eq car 'define-skeleton)
+ − 57 form)
+ − 58 ((eq car 'define-derived-mode)
+ − 59 (cddr form))
+ − 60 (t
+ − 61 (cdr form))))
428
+ − 62 doc (car form))
+ − 63 (if (stringp doc)
+ − 64 (setq form (cdr form))
+ − 65 (setq doc nil))
+ − 66 (list 'autoload (list 'quote name) file doc
+ − 67 (or (eq car 'define-skeleton)
646
+ − 68 (eq car 'define-derived-mode)
428
+ − 69 (eq (car-safe (car form)) 'interactive))
+ − 70 (if macrop (list 'quote 'macro) nil)))
+ − 71 nil)))
+ − 72
996
+ − 73 (defun make-c-autoload (module)
+ − 74 "Make an autoload list for the DEFUN at point in MODULE.
+ − 75 Returns nil if the DEFUN is malformed."
+ − 76 (and
+ − 77 ;; Match the DEFUN
+ − 78 (search-forward "DEFUN" nil t)
+ − 79 ;; Match the opening parenthesis
+ − 80 (progn
+ − 81 (skip-syntax-forward " ")
+ − 82 (eq (char-after) ?\())
+ − 83 ;; Match the opening quote of the Lisp function name
+ − 84 (progn
+ − 85 (forward-char)
+ − 86 (skip-syntax-forward " ")
+ − 87 (eq (char-after) ?\"))
+ − 88 ;; Extract the Lisp function name, interactive indicator, and docstring
+ − 89 (let* ((func-name (let ((begin (progn (forward-char) (point))))
+ − 90 (search-forward "\"" nil t)
+ − 91 (backward-char)
+ − 92 (intern (buffer-substring begin (point)))))
+ − 93 (interact (progn
+ − 94 (search-forward "," nil t 4)
+ − 95 (skip-syntax-forward " ")
+ − 96 (not (eq (char-after) ?0))))
+ − 97 (begin (progn
+ − 98 (search-forward "/*" nil t)
+ − 99 (forward-line 1)
+ − 100 (point))))
+ − 101 (search-forward "*/" nil t)
+ − 102 (goto-char (match-beginning 0))
+ − 103 (skip-chars-backward " \t\n\f")
+ − 104 (list 'autoload (list 'quote func-name) module
+ − 105 (buffer-substring begin (point)) interact nil))))
+ − 106
428
+ − 107 (defvar generate-autoload-cookie ";;;###autoload"
+ − 108 "Magic comment indicating the following form should be autoloaded.
+ − 109 Used by `update-file-autoloads'. This string should be
+ − 110 meaningless to Lisp (e.g., a comment).
+ − 111
+ − 112 This string is used:
+ − 113
+ − 114 ;;;###autoload
+ − 115 \(defun function-to-be-autoloaded () ...)
+ − 116
+ − 117 If this string appears alone on a line, the following form will be
+ − 118 read and an autoload made for it. If it is followed by the string
+ − 119 \"immediate\", then the form on the following line will be copied
+ − 120 verbatim. If there is further text on the line, that text will be
+ − 121 copied verbatim to `generated-autoload-file'.")
+ − 122
996
+ − 123 (defvar generate-c-autoload-cookie "/* ###autoload"
+ − 124 "Magic C comment indicating the following form should be autoloaded.
+ − 125 Used by `update-file-autoloads'. This string should be
+ − 126 meaningless to C (e.g., a comment).
+ − 127
+ − 128 This string is used:
+ − 129
+ − 130 /* ###autoload */
+ − 131 DEFUN (\"function-to-be-autoloaded\", ... )
+ − 132
+ − 133 If this string appears alone on a line, the following form will be
+ − 134 read and an autoload made for it. If there is further text on the line,
+ − 135 that text will be copied verbatim to `generated-autoload-file'.")
+ − 136
+ − 137 (defvar generate-c-autoload-module "/* ###module"
+ − 138 "Magic C comment indicating the module containing autoloaded functions.
+ − 139 Since a module can consist of multiple C files, the module name may not be
+ − 140 the same as the C source file base name. In that case, use this comment to
+ − 141 indicate the actual name of the module from which to autoload functions.")
+ − 142
428
+ − 143 (defvar generate-autoload-section-header "\f\n;;;### "
+ − 144 "String inserted before the form identifying
+ − 145 the section of autoloads for a file.")
+ − 146
+ − 147 (defvar generate-autoload-section-trailer "\n;;;***\n"
+ − 148 "String which indicates the end of the section of autoloads for a file.")
+ − 149
442
+ − 150 (defvar autoload-package-name nil)
+ − 151
428
+ − 152 ;;; Forms which have doc-strings which should be printed specially.
+ − 153 ;;; A doc-string-elt property of ELT says that (nth ELT FORM) is
+ − 154 ;;; the doc-string in FORM.
+ − 155 ;;;
+ − 156 ;;; There used to be the following note here:
+ − 157 ;;; ;;; Note: defconst and defvar should NOT be marked in this way.
+ − 158 ;;; ;;; We don't want to produce defconsts and defvars that
+ − 159 ;;; ;;; make-docfile can grok, because then it would grok them twice,
+ − 160 ;;; ;;; once in foo.el (where they are given with ;;;###autoload) and
+ − 161 ;;; ;;; once in loaddefs.el.
+ − 162 ;;;
+ − 163 ;;; Counter-note: Yes, they should be marked in this way.
+ − 164 ;;; make-docfile only processes those files that are loaded into the
+ − 165 ;;; dumped Emacs, and those files should never have anything
+ − 166 ;;; autoloaded here. The above-feared problem only occurs with files
+ − 167 ;;; which have autoloaded entries *and* are processed by make-docfile;
+ − 168 ;;; there should be no such files.
+ − 169
+ − 170 (put 'autoload 'doc-string-elt 3)
+ − 171 (put 'defun 'doc-string-elt 3)
778
+ − 172 (put 'defun* 'doc-string-elt 3)
428
+ − 173 (put 'defvar 'doc-string-elt 3)
+ − 174 (put 'defconst 'doc-string-elt 3)
+ − 175 (put 'defmacro 'doc-string-elt 3)
778
+ − 176 (put 'defmacro* 'doc-string-elt 3)
+ − 177 (put 'define-skeleton 'doc-string-elt 3)
969
+ − 178 (put 'define-derived-mode 'doc-string-elt 4)
428
+ − 179
+ − 180 (defun autoload-trim-file-name (file)
+ − 181 "Returns a relative pathname of FILE including the last directory."
+ − 182 (setq file (expand-file-name file))
442
+ − 183 (replace-in-string
+ − 184 (file-relative-name file (file-name-directory
+ − 185 (directory-file-name
+ − 186 (file-name-directory file))))
+ − 187 "\\\\" "/"))
428
+ − 188
+ − 189 ;;;###autoload
+ − 190 (defun generate-file-autoloads (file &optional funlist)
+ − 191 "Insert at point a loaddefs autoload section for FILE.
+ − 192 autoloads are generated for defuns and defmacros in FILE
+ − 193 marked by `generate-autoload-cookie' (which see).
+ − 194 If FILE is being visited in a buffer, the contents of the buffer
+ − 195 are used."
+ − 196 (interactive "fGenerate autoloads for file: ")
996
+ − 197 (if (string-match "\\.el$" file)
+ − 198 (generate-file-autoloads-1 file funlist)
+ − 199 (generate-c-file-autoloads-1 file funlist)))
428
+ − 200
+ − 201 (defun* generate-file-autoloads-1 (file funlist)
+ − 202 "Insert at point a loaddefs autoload section for FILE.
+ − 203 autoloads are generated for defuns and defmacros in FILE
+ − 204 marked by `generate-autoload-cookie' (which see).
+ − 205 If FILE is being visited in a buffer, the contents of the buffer
+ − 206 are used."
+ − 207 (let ((outbuf (current-buffer))
+ − 208 (autoloads-done '())
+ − 209 (load-name (replace-in-string (file-name-nondirectory file)
+ − 210 "\\.elc?$"
+ − 211 ""))
+ − 212 (trim-name (autoload-trim-file-name file))
+ − 213 (dofiles (not (null funlist)))
+ − 214 (print-length nil)
+ − 215 (print-readably t) ; XEmacs
+ − 216 (float-output-format nil)
+ − 217 ;; (done-any nil)
+ − 218 (visited (get-file-buffer file))
+ − 219 output-end)
+ − 220
+ − 221 ;; If the autoload section we create here uses an absolute
+ − 222 ;; pathname for FILE in its header, and then Emacs is installed
+ − 223 ;; under a different path on another system,
+ − 224 ;; `update-autoloads-here' won't be able to find the files to be
+ − 225 ;; autoloaded. So, if FILE is in the same directory or a
+ − 226 ;; subdirectory of the current buffer's directory, we'll make it
+ − 227 ;; relative to the current buffer's directory.
+ − 228 (setq file (expand-file-name file))
+ − 229
+ − 230 (save-excursion
+ − 231 (unwind-protect
+ − 232 (progn
+ − 233 (let ((find-file-hooks nil)
+ − 234 (enable-local-variables nil))
+ − 235 (set-buffer (or visited (find-file-noselect file)))
460
+ − 236 (set-syntax-table emacs-lisp-mode-syntax-table))
428
+ − 237 (save-excursion
+ − 238 (save-restriction
+ − 239 (widen)
+ − 240 (goto-char (point-min))
+ − 241 (unless (search-forward generate-autoload-cookie nil t)
+ − 242 (message "No autoloads found in %s" trim-name)
+ − 243 (return-from generate-file-autoloads-1))
+ − 244
+ − 245 (message "Generating autoloads for %s..." trim-name)
+ − 246 (goto-char (point-min))
+ − 247 (while (if dofiles funlist (not (eobp)))
+ − 248 (if (not dofiles)
+ − 249 (skip-chars-forward " \t\n\f")
+ − 250 (goto-char (point-min))
+ − 251 (re-search-forward
+ − 252 (concat "(def\\(un\\|var\\|const\\|macro\\) "
+ − 253 (regexp-quote (symbol-name (car funlist)))
+ − 254 "\\s "))
+ − 255 (goto-char (match-beginning 0)))
+ − 256 (cond
+ − 257 ((or dofiles
+ − 258 (looking-at (regexp-quote generate-autoload-cookie)))
+ − 259 (if dofiles
+ − 260 nil
+ − 261 (search-forward generate-autoload-cookie)
+ − 262 (skip-chars-forward " \t"))
+ − 263 ;; (setq done-any t)
+ − 264 (if (or dofiles (eolp))
+ − 265 ;; Read the next form and make an autoload.
+ − 266 (let* ((form (prog1 (read (current-buffer))
+ − 267 (or (bolp) (forward-line 1))))
+ − 268 (autoload (make-autoload form load-name))
+ − 269 (doc-string-elt (get (car-safe form)
+ − 270 'doc-string-elt)))
+ − 271 (if autoload
+ − 272 (setq autoloads-done (cons (nth 1 form)
+ − 273 autoloads-done))
+ − 274 (setq autoload form))
1048
+ − 275 (print-autoload autoload doc-string-elt outbuf ""))
428
+ − 276 ;; Copy the rest of the line to the output.
+ − 277 (let ((begin (point)))
+ − 278 ;; (terpri outbuf)
+ − 279 (cond ((looking-at "immediate\\s *$") ; XEmacs
+ − 280 ;; This is here so that you can automatically
+ − 281 ;; have small hook functions copied to
+ − 282 ;; loaddefs.el so that it's not necessary to
+ − 283 ;; load a whole file just to get a two-line
+ − 284 ;; do-nothing find-file-hook... --Stig
+ − 285 (forward-line 1)
+ − 286 (setq begin (point))
+ − 287 (forward-sexp)
+ − 288 (forward-line 1))
+ − 289 (t
+ − 290 (forward-line 1)))
+ − 291 (princ (buffer-substring begin (point)) outbuf))))
+ − 292 ((looking-at ";")
+ − 293 ;; Don't read the comment.
+ − 294 (forward-line 1))
+ − 295 (t
+ − 296 (forward-sexp 1)
+ − 297 (forward-line 1)))
+ − 298 (if dofiles
+ − 299 (setq funlist (cdr funlist)))))))
+ − 300 (unless visited
+ − 301 ;; We created this buffer, so we should kill it.
+ − 302 (kill-buffer (current-buffer)))
+ − 303 (set-buffer outbuf)
+ − 304 (setq output-end (point-marker))))
+ − 305 (if t ;; done-any
+ − 306 ;; XEmacs -- always do this so that we cache the information
+ − 307 ;; that we've processed the file already.
+ − 308 (progn
+ − 309 (insert generate-autoload-section-header)
+ − 310 (prin1 (list 'autoloads autoloads-done load-name trim-name)
+ − 311 outbuf)
+ − 312 (terpri outbuf)
+ − 313 ;;;; (insert ";;; Generated autoloads from "
+ − 314 ;;;; (autoload-trim-file-name file) "\n")
+ − 315 ;; Warn if we put a line in loaddefs.el
+ − 316 ;; that is long enough to cause trouble.
+ − 317 (when (< output-end (point))
+ − 318 (setq output-end (point-marker)))
+ − 319 (while (< (point) output-end)
+ − 320 ;; (let ((beg (point)))
+ − 321 (end-of-line)
+ − 322 ;; Emacs -- I still haven't figured this one out.
+ − 323 ;; (if (> (- (point) beg) 900)
+ − 324 ;; (progn
+ − 325 ;; (message "A line is too long--over 900 characters")
+ − 326 ;; (sleep-for 2)
+ − 327 ;; (goto-char output-end)))
+ − 328 ;; )
+ − 329 (forward-line 1))
+ − 330 (goto-char output-end)
+ − 331 (insert generate-autoload-section-trailer)))
+ − 332 (or noninteractive ; XEmacs: only need one line in -batch mode.
+ − 333 (message "Generating autoloads for %s...done" file))))
+ − 334
996
+ − 335 (defun* generate-c-file-autoloads-1 (file funlist)
+ − 336 "Insert at point a loaddefs autoload section for the C file FILE.
1048
+ − 337 autoloads are generated for defuns and defmacros in FILE
996
+ − 338 marked by `generate-c-autoload-cookie' (which see).
+ − 339 If FILE is being visited in a buffer, the contents of the buffer
+ − 340 are used."
+ − 341 (let ((outbuf (current-buffer))
+ − 342 (autoloads-done '())
+ − 343 (load-name (replace-in-string (file-name-nondirectory file)
+ − 344 "\\.c?$"
+ − 345 ""))
+ − 346 (trim-name (autoload-trim-file-name file))
+ − 347 (print-length nil)
+ − 348 (print-readably t)
+ − 349 (float-output-format nil)
+ − 350 ;; (done-any nil)
+ − 351 (visited (get-file-buffer file))
+ − 352 output-end)
+ − 353
+ − 354 ;; If the autoload section we create here uses an absolute
+ − 355 ;; pathname for FILE in its header, and then Emacs is installed
+ − 356 ;; under a different path on another system,
+ − 357 ;; `update-autoloads-here' won't be able to find the files to be
+ − 358 ;; autoloaded. So, if FILE is in the same directory or a
+ − 359 ;; subdirectory of the current buffer's directory, we'll make it
+ − 360 ;; relative to the current buffer's directory.
+ − 361 (setq file (expand-file-name file))
+ − 362
+ − 363 (save-excursion
+ − 364 (unwind-protect
+ − 365 (progn
+ − 366 (let ((find-file-hooks nil)
+ − 367 (enable-local-variables nil))
+ − 368 (set-buffer (or visited (find-file-noselect file t t)))
+ − 369 ;; This doesn't look right, but it is. The only place we need
+ − 370 ;; the syntax table is when snarfing the Lisp function name.
+ − 371 (set-syntax-table emacs-lisp-mode-syntax-table))
+ − 372 (save-excursion
+ − 373 (save-restriction
+ − 374 (widen)
+ − 375 (goto-char (point-min))
+ − 376 ;; Is there a module name comment?
+ − 377 (when (search-forward generate-c-autoload-module nil t)
+ − 378 (skip-chars-forward " \t")
+ − 379 (let ((begin (point)))
+ − 380 (skip-chars-forward "^ \t\n\f")
+ − 381 (setq load-name (buffer-substring begin (point)))))
+ − 382 (if funlist
+ − 383 (progn
+ − 384 (message "Generating autoloads for %s..." trim-name)
1048
+ − 385 (princ "(when (or\n" outbuf)
+ − 386 (princ (format
+ − 387 " (file-exists-p (expand-file-name \"%s.ell\" module-directory))\n"
+ − 388 load-name) outbuf)
+ − 389 (princ (format
+ − 390 " (file-exists-p (expand-file-name \"%s.dll\" module-directory))\n"
+ − 391 load-name) outbuf)
+ − 392 (princ (format
+ − 393 " (file-exists-p (expand-file-name \"%s.so\" module-directory)))\n"
+ − 394 load-name) outbuf)
996
+ − 395 (dolist (arg funlist)
+ − 396 (goto-char (point-min))
+ − 397 (re-search-forward
+ − 398 (concat "DEFUN (\""
+ − 399 (regexp-quote (symbol-name arg))
+ − 400 "\""))
+ − 401 (goto-char (match-beginning 0))
+ − 402 (let ((autoload (make-c-autoload load-name)))
+ − 403 (when autoload
+ − 404 (push (nth 1 (nth 1 autoload)) autoloads-done)
1048
+ − 405 (print-autoload autoload 3 outbuf " "))))
+ − 406 (princ ")" outbuf))
996
+ − 407 (goto-char (point-min))
+ − 408 (let ((match
+ − 409 (search-forward generate-c-autoload-cookie nil t)))
+ − 410 (unless match
+ − 411 (message "No autoloads found in %s" trim-name)
+ − 412 (return-from generate-c-file-autoloads-1))
+ − 413
+ − 414 (message "Generating autoloads for %s..." trim-name)
1048
+ − 415 (princ "(when (or\n" outbuf)
+ − 416 (princ (format
+ − 417 " (file-exists-p (expand-file-name \"%s.ell\" module-directory))\n"
+ − 418 load-name) outbuf)
+ − 419 (princ (format
+ − 420 " (file-exists-p (expand-file-name \"%s.dll\" module-directory))\n"
+ − 421 load-name) outbuf)
+ − 422 (princ (format
+ − 423 " (file-exists-p (expand-file-name \"%s.so\" module-directory)))\n"
+ − 424 load-name) outbuf)
996
+ − 425 (while match
+ − 426 (forward-line 1)
+ − 427 (let ((autoload (make-c-autoload load-name)))
+ − 428 (when autoload
+ − 429 (push (nth 1 (nth 1 autoload)) autoloads-done)
1048
+ − 430 (print-autoload autoload 3 outbuf " ")))
996
+ − 431 (setq match
1048
+ − 432 (search-forward generate-c-autoload-cookie nil t)))
+ − 433 (princ ")" outbuf))))))
996
+ − 434 (unless visited
+ − 435 ;; We created this buffer, so we should kill it.
+ − 436 (kill-buffer (current-buffer)))
+ − 437 (set-buffer outbuf)
+ − 438 (setq output-end (point-marker))))
+ − 439 (insert generate-autoload-section-header)
+ − 440 (prin1 (list 'autoloads autoloads-done load-name trim-name) outbuf)
+ − 441 (terpri outbuf)
+ − 442 (when (< output-end (point))
+ − 443 (setq output-end (point-marker)))
+ − 444 (goto-char output-end)
+ − 445 (insert generate-autoload-section-trailer)
+ − 446 (or noninteractive ; XEmacs: only need one line in -batch mode.
+ − 447 (message "Generating autoloads for %s...done" trim-name))))
+ − 448
1048
+ − 449 (defun print-autoload (autoload doc-string-elt outbuf margin)
996
+ − 450 "Print an autoload form, handling special characters.
+ − 451 In particular, print docstrings with escapes inserted before left parentheses
+ − 452 at the beginning of lines and ^L characters."
+ − 453 (if (and doc-string-elt (stringp (nth doc-string-elt autoload)))
+ − 454 ;; We need to hack the printing because the doc-string must be
+ − 455 ;; printed specially for make-docfile (sigh).
+ − 456 (let* ((p (nthcdr (1- doc-string-elt) autoload))
1048
+ − 457 (elt (cdr p))
+ − 458 (start-string (format "\n%s(" margin)))
996
+ − 459 (setcdr p nil)
1048
+ − 460 (princ start-string outbuf)
996
+ − 461 ;; XEmacs change: don't let ^^L's get into
+ − 462 ;; the file or sorting is hard.
+ − 463 (let ((print-escape-newlines t)
+ − 464 (p (save-excursion
+ − 465 (set-buffer outbuf)
+ − 466 (point)))
+ − 467 p2)
+ − 468 (mapcar #'(lambda (elt)
+ − 469 (prin1 elt outbuf)
+ − 470 (princ " " outbuf))
+ − 471 autoload)
+ − 472 (save-excursion
+ − 473 (set-buffer outbuf)
+ − 474 (setq p2 (point-marker))
+ − 475 (goto-char p)
+ − 476 (save-match-data
+ − 477 (while (search-forward "\^L" p2 t)
+ − 478 (delete-char -1)
+ − 479 (insert "\\^L")))
+ − 480 (goto-char p2)))
+ − 481 (princ "\"\\\n" outbuf)
+ − 482 (let ((begin (save-excursion
+ − 483 (set-buffer outbuf)
+ − 484 (point))))
+ − 485 (princ (substring (prin1-to-string (car elt)) 1) outbuf)
+ − 486 ;; Insert a backslash before each ( that appears at the beginning
+ − 487 ;; of a line in the doc string.
+ − 488 (save-excursion
+ − 489 (set-buffer outbuf)
+ − 490 (save-excursion
1048
+ − 491 (while (search-backward start-string begin t)
996
+ − 492 (forward-char 1)
+ − 493 (insert "\\"))))
+ − 494 (if (null (cdr elt))
+ − 495 (princ ")" outbuf)
+ − 496 (princ " " outbuf)
+ − 497 (princ (substring (prin1-to-string (cdr elt)) 1) outbuf))
1048
+ − 498 (terpri outbuf)
+ − 499 (princ margin outbuf)))
996
+ − 500 ;; XEmacs change: another ^L hack
+ − 501 (let ((p (save-excursion
+ − 502 (set-buffer outbuf)
+ − 503 (point)))
+ − 504 (print-escape-newlines t)
+ − 505 p2)
+ − 506 (print autoload outbuf)
+ − 507 (save-excursion
+ − 508 (set-buffer outbuf)
+ − 509 (setq p2 (point-marker))
+ − 510 (goto-char p)
+ − 511 (save-match-data
+ − 512 (while (search-forward "\^L" p2 t)
+ − 513 (delete-char -1)
+ − 514 (insert "\\^L")))
+ − 515 (goto-char p2)))))
+ − 516
428
+ − 517
+ − 518 (defconst autoload-file-name "auto-autoloads.el"
+ − 519 "Generic filename to put autoloads into.
+ − 520 Unless you are an XEmacs maintainer, it is probably unwise to change this.")
+ − 521
442
+ − 522 (defvar autoload-target-directory "../lisp/"
428
+ − 523 "Directory to put autoload declaration file into.
+ − 524 Unless you know what you're doing, don't mess with this.")
+ − 525
+ − 526 (defvar generated-autoload-file
+ − 527 (expand-file-name (concat autoload-target-directory
+ − 528 autoload-file-name)
+ − 529 data-directory)
+ − 530 "*File `update-file-autoloads' puts autoloads into.
+ − 531 A .el file can set this in its local variables section to make its
442
+ − 532 autoloads go somewhere else.
+ − 533
+ − 534 Note that `batch-update-directory' binds this variable to its own value,
+ − 535 generally the file named `autoload-file-name' in the directory being
+ − 536 updated.")
428
+ − 537
+ − 538 (defconst cusload-file-name "custom-load.el"
442
+ − 539 "Generic filename to put custom loads into.
+ − 540 Unless you are an XEmacs maintainer, it is probably unwise to change this.")
428
+ − 541
+ − 542 ;;;###autoload
+ − 543 (defun update-file-autoloads (file)
+ − 544 "Update the autoloads for FILE in `generated-autoload-file'
+ − 545 \(which FILE might bind in its local variables).
438
+ − 546 This function refuses to update autoloads files."
428
+ − 547 (interactive "fUpdate autoloads for file: ")
+ − 548 (setq file (expand-file-name file))
+ − 549 (when (and (file-newer-than-file-p file generated-autoload-file)
+ − 550 (not (member (file-name-nondirectory file)
+ − 551 (list autoload-file-name))))
+ − 552
+ − 553 (let ((load-name (replace-in-string (file-name-nondirectory file)
996
+ − 554 "\\.\\(elc?\\|c\\)$"
428
+ − 555 ""))
+ − 556 (trim-name (autoload-trim-file-name file))
+ − 557 section-begin form)
+ − 558 (save-excursion
+ − 559 (let ((find-file-hooks nil))
+ − 560 (set-buffer (or (get-file-buffer generated-autoload-file)
+ − 561 (find-file-noselect generated-autoload-file))))
+ − 562 ;; Make sure we can scribble in it.
+ − 563 (setq buffer-read-only nil)
+ − 564 ;; First delete all sections for this file.
+ − 565 (goto-char (point-min))
+ − 566 (while (search-forward generate-autoload-section-header nil t)
+ − 567 (setq section-begin (match-beginning 0))
+ − 568 (setq form (read (current-buffer)))
+ − 569 (when (string= (nth 2 form) load-name)
+ − 570 (search-forward generate-autoload-section-trailer)
+ − 571 (delete-region section-begin (point))))
+ − 572
+ − 573 ;; Now find insertion point for new section
+ − 574 (block find-insertion-point
+ − 575 (goto-char (point-min))
+ − 576 (while (search-forward generate-autoload-section-header nil t)
+ − 577 (setq form (read (current-buffer)))
+ − 578 (when (string< trim-name (nth 3 form))
+ − 579 ;; Found alphabetically correct insertion point
+ − 580 (goto-char (match-beginning 0))
+ − 581 (return-from find-insertion-point))
+ − 582 (search-forward generate-autoload-section-trailer))
+ − 583 (when (eq (point) (point-min)) ; No existing entries?
+ − 584 (goto-char (point-max)))) ; Append.
+ − 585
+ − 586 ;; Add in new sections for file
+ − 587 (generate-file-autoloads file))
+ − 588
+ − 589 (when (interactive-p) (save-buffer)))))
+ − 590
+ − 591 ;;;###autoload
+ − 592 (defun update-autoloads-here ()
+ − 593 "Update sections of the current buffer generated by `update-file-autoloads'."
+ − 594 (interactive)
+ − 595 (let ((generated-autoload-file (buffer-file-name)))
+ − 596 (save-excursion
+ − 597 (goto-char (point-min))
+ − 598 (while (search-forward generate-autoload-section-header nil t)
+ − 599 (let* ((form (condition-case ()
+ − 600 (read (current-buffer))
+ − 601 (end-of-file nil)))
+ − 602 (file (nth 3 form)))
+ − 603 ;; XEmacs change: if we can't find the file as specified, look
+ − 604 ;; around a bit more.
+ − 605 (cond ((and (stringp file)
+ − 606 (or (get-file-buffer file)
+ − 607 (file-exists-p file))))
+ − 608 ((and (stringp file)
+ − 609 (save-match-data
+ − 610 (let ((loc (locate-file (file-name-nondirectory file)
+ − 611 load-path)))
+ − 612 (if (null loc)
+ − 613 nil
+ − 614 (setq loc (expand-file-name
+ − 615 (autoload-trim-file-name loc)
+ − 616 ".."))
+ − 617 (if (or (get-file-buffer loc)
+ − 618 (file-exists-p loc))
+ − 619 (setq file loc)
+ − 620 nil))))))
+ − 621 (t
+ − 622 (setq file
+ − 623 (if (y-or-n-p
+ − 624 (format
+ − 625 "Can't find library `%s'; remove its autoloads? "
+ − 626 (nth 2 form) file))
+ − 627 t
+ − 628 (condition-case ()
+ − 629 (read-file-name
+ − 630 (format "Find `%s' load file: "
+ − 631 (nth 2 form))
+ − 632 nil nil t)
+ − 633 (quit nil))))))
+ − 634 (if file
+ − 635 (let ((begin (match-beginning 0)))
+ − 636 (search-forward generate-autoload-section-trailer)
+ − 637 (delete-region begin (point))))
+ − 638 (if (stringp file)
+ − 639 (generate-file-autoloads file)))))))
+ − 640
+ − 641 ;;;###autoload
+ − 642 (defun update-autoloads-from-directory (dir)
+ − 643 "Update `generated-autoload-file' with all the current autoloads from DIR.
996
+ − 644 This runs `update-file-autoloads' on each .el and .c file in DIR.
442
+ − 645 Obsolete autoload entries for files that no longer exist are deleted.
+ − 646 Note that, if this function is called from `batch-update-directory',
528
+ − 647 `generated-autoload-file' was rebound in that function.
+ − 648
+ − 649 You don't really want to be calling this function. Try using
+ − 650 `update-autoload-files' instead."
428
+ − 651 (interactive "DUpdate autoloads for directory: ")
+ − 652 (setq dir (expand-file-name dir))
+ − 653 (let ((simple-dir (file-name-as-directory
+ − 654 (file-name-nondirectory
+ − 655 (directory-file-name dir))))
+ − 656 (enable-local-eval nil))
+ − 657 (save-excursion
+ − 658 (let ((find-file-hooks nil))
+ − 659 (set-buffer (find-file-noselect generated-autoload-file)))
+ − 660 (goto-char (point-min))
+ − 661 (while (search-forward generate-autoload-section-header nil t)
+ − 662 (let* ((begin (match-beginning 0))
+ − 663 (form (condition-case ()
+ − 664 (read (current-buffer))
+ − 665 (end-of-file nil)))
+ − 666 (file (nth 3 form)))
+ − 667 (when (and (stringp file)
+ − 668 (string= (file-name-directory file) simple-dir)
+ − 669 (not (file-exists-p
+ − 670 (expand-file-name
+ − 671 (file-name-nondirectory file) dir))))
+ − 672 ;; Remove the obsolete section.
+ − 673 (search-forward generate-autoload-section-trailer)
+ − 674 (delete-region begin (point)))))
+ − 675 ;; Update or create autoload sections for existing files.
996
+ − 676 (mapcar 'update-file-autoloads
+ − 677 (directory-files dir t "^[^=].*\\.\\(el\\|c\\)$"))
428
+ − 678 (unless noninteractive
+ − 679 (save-buffer)))))
+ − 680
+ − 681 (defun fixup-autoload-buffer (sym)
+ − 682 (save-excursion
+ − 683 (set-buffer (find-file-noselect generated-autoload-file))
+ − 684 (goto-char (point-min))
+ − 685 (if (and (not (= (point-min) (point-max)))
+ − 686 (not (looking-at ";;; DO NOT MODIFY THIS FILE")))
+ − 687 (progn
+ − 688 (insert ";;; DO NOT MODIFY THIS FILE\n")
+ − 689 (insert "(if (featurep '" sym ")")
+ − 690 (insert " (error \"Already loaded\"))\n")
+ − 691 (goto-char (point-max))
+ − 692 (insert "\n(provide '" sym ")\n")))))
+ − 693
+ − 694 (defvar autoload-package-name nil)
+ − 695
528
+ − 696 ;;;###autoload
+ − 697 (defun update-autoload-files (files-or-dirs &optional all-into-one-file force)
+ − 698 "Update all the autoload files associated with FILES-OR-DIRS.
+ − 699 FILES-OR-DIRS should be a list of files or directories to be
+ − 700 processed. If ALL-INTO-ONE-FILE is not given, the appropriate
+ − 701 autoload file for each file or directory (located in that directory,
+ − 702 or in the directory of the specified file) will be updated with the
+ − 703 directory's or file's autoloads, some additional fixup text will be
+ − 704 added, and the files will be saved. If ALL-INTO-ONE-FILE is given,
+ − 705 `generated-autoload-file' should be set to the name of the autoload
+ − 706 file into which the autoloads will be generated, and the autoloads
+ − 707 for all files and directories will go into that same file.
+ − 708
+ − 709 If FORCE is non-nil, always save out the autoload files even if unchanged."
645
+ − 710 (let ((defdir (directory-file-name default-directory))
528
+ − 711 (enable-local-eval nil)) ; Don't query in batch mode.
+ − 712 ;; (message "Updating autoloads in %s..." generated-autoload-file)
+ − 713 (dolist (arg files-or-dirs)
+ − 714 (setq arg (expand-file-name arg defdir))
+ − 715 (let ((generated-autoload-file
+ − 716 (if all-into-one-file generated-autoload-file
+ − 717 (expand-file-name autoload-file-name
+ − 718 (if (file-directory-p arg) arg
+ − 719 (file-name-directory arg))))))
+ − 720 (cond
+ − 721 ((file-directory-p arg)
+ − 722 (message "Updating autoloads for directory %s..." arg)
+ − 723 (update-autoloads-from-directory arg))
+ − 724 ((file-exists-p arg)
+ − 725 (update-file-autoloads arg))
+ − 726 (t (error "No such file or directory: %s" arg)))
+ − 727 (when (not all-into-one-file)
+ − 728 (fixup-autoload-buffer (concat (if autoload-package-name
+ − 729 autoload-package-name
+ − 730 (file-name-nondirectory defdir))
+ − 731 "-autoloads"))
+ − 732 (if force (set-buffer-modified-p
+ − 733 t (find-file-noselect generated-autoload-file))))))
+ − 734 (when all-into-one-file
+ − 735 (fixup-autoload-buffer (concat (if autoload-package-name
+ − 736 autoload-package-name
+ − 737 (file-name-nondirectory defdir))
+ − 738 "-autoloads"))
+ − 739 (if force (set-buffer-modified-p
+ − 740 t (find-file-noselect generated-autoload-file))))
+ − 741 (save-some-buffers t)
+ − 742 ;; (message "Done")
+ − 743 ))
+ − 744
+ − 745 ;; #### these entry points below are a big mess, especially the
+ − 746 ;; first two. there don't seem to be very many packages that use the
+ − 747 ;; first one (the "all-into-one-file" variety), and do they actually
+ − 748 ;; rely on this functionality? --ben
+ − 749
+ − 750 ;;;###autoload
+ − 751 (defun batch-update-autoloads ()
+ − 752 "Update the autoloads for the files or directories on the command line.
+ − 753 Runs `update-file-autoloads' on files and `update-directory-autoloads'
+ − 754 on directories. Must be used only with -batch, and kills Emacs on completion.
+ − 755 Each file will be processed even if an error occurred previously.
+ − 756 For example, invoke `xemacs -batch -f batch-update-autoloads *.el'.
+ − 757 The directory to which the auto-autoloads.el file must be the first parameter
+ − 758 on the command line."
+ − 759 (unless noninteractive
+ − 760 (error "batch-update-autoloads is to be used only with -batch"))
+ − 761 (update-autoload-files command-line-args-left t)
+ − 762 (kill-emacs 0))
442
+ − 763
428
+ − 764 ;;;###autoload
+ − 765 (defun batch-update-directory ()
442
+ − 766 "Update the autoloads for the directories on the command line.
+ − 767 Runs `update-file-autoloads' on each file in the given directory, and must
+ − 768 be used only with -batch."
428
+ − 769 (unless noninteractive
+ − 770 (error "batch-update-directory is to be used only with -batch"))
528
+ − 771 (update-autoload-files command-line-args-left)
+ − 772 ;; (kill-emacs 0)
+ − 773 (setq command-line-args-left nil))
442
+ − 774
+ − 775 ;;;###autoload
+ − 776 (defun batch-update-one-directory ()
+ − 777 "Update the autoloads for a single directory on the command line.
+ − 778 Runs `update-file-autoloads' on each file in the given directory, and must
+ − 779 be used only with -batch."
+ − 780 (unless noninteractive
+ − 781 (error "batch-update-directory is to be used only with -batch"))
528
+ − 782 (let ((arg (car command-line-args-left)))
+ − 783 (setq command-line-args-left (cdr command-line-args-left))
+ − 784 (update-autoload-files (list arg))))
+ − 785
+ − 786 ;;;###autoload
+ − 787 (defun batch-force-update-one-directory ()
+ − 788 "Update the autoloads for a single directory on the command line.
+ − 789 Runs `update-file-autoloads' on each file in the given directory, and must
+ − 790 be used only with -batch. Always rewrite the autoloads file, even if
+ − 791 unchanged."
+ − 792 (unless noninteractive
+ − 793 (error "batch-update-directory is to be used only with -batch"))
+ − 794 (let ((arg (car command-line-args-left)))
+ − 795 (setq command-line-args-left (cdr command-line-args-left))
546
+ − 796 (update-autoload-files (list arg) nil t)))
442
+ − 797
428
+ − 798 (provide 'autoload)
+ − 799
+ − 800 ;;; autoload.el ends here