Mercurial > hg > xemacs-beta
comparison lisp/autoload.el @ 1302:781dc6d5baba
[xemacs-hg @ 2003-02-15 00:31:58 by ben]
fix autoload build problems (hopefully)
autoload.el: Include FUNLIST argument to generate-c-file-autoloads-1.
author | ben |
---|---|
date | Sat, 15 Feb 2003 00:31:58 +0000 |
parents | 1b4bc72f433e |
children | c3cf7db99b98 |
comparison
equal
deleted
inserted
replaced
1301:4322bab48cfb | 1302:781dc6d5baba |
---|---|
299 ;; #### jj, are C++ modules possible? | 299 ;; #### jj, are C++ modules possible? |
300 ((string-match "\\.c$" file) | 300 ((string-match "\\.c$" file) |
301 (generate-autoload-ish-1 | 301 (generate-autoload-ish-1 |
302 file | 302 file |
303 (replace-in-string (file-name-nondirectory file) "\\.c$" "") | 303 (replace-in-string (file-name-nondirectory file) "\\.c$" "") |
304 t #'generate-c-file-autoloads-1)) | 304 t #'generate-c-file-autoloads-1 |
305 funlist)) | |
305 (t | 306 (t |
306 (error 'wrong-type-argument file "not a C or Elisp source file")))) | 307 (error 'wrong-type-argument file "not a C or Elisp source file")))) |
307 | 308 |
308 (defun* generate-autoload-ish-1 (file load-name literal fun-to-call &rest args) | 309 (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 "Insert at point an autoload-type section for FILE. |