* texi/infohack.el: Load dgnushack.el and ptexinfmt.el first.
2003-04-28 Katsumi Yamaoka <yamaoka@jpl.org>
+ * lisp/dgnushack.el: Make sure `dolist' is available.
+
+ * texi/infohack.el: Load dgnushack.el and ptexinfmt.el first.
+
+2003-04-27 Simon Josefsson <jas@extundo.com>
+
+ * GNUS-NEWS: Fix PGP entry. Doc GCC variable change.
+
+2003-04-28 Katsumi Yamaoka <yamaoka@jpl.org>
+
* lisp/gnus-vers.el: T-gnus 6.15.20 (quimby) revision 00.
2003-04-28 Katsumi Yamaoka <yamaoka@jpl.org>
(defalias 'facep 'ignore)
(require 'cl)
-(unless (dolist (var nil t))
- ;; Override the macro `dolist' which may have been defined in egg.el.
+
+(and (fboundp 'dolist)
+ (dolist (var nil t)))
+
+
+(unless (and
+ ;; `dolist' might not be available because of ``-no-autoloads''.
+ (fboundp 'dolist)
+ ;; It may have been defined in egg.el.
+ (dolist (var nil t)))
(load "cl-macs" nil t))
(defvar srcdir (or (getenv "srcdir") "."))
"mml-smime.el" "mml.el" "mml1991.el" "mml2015.el")
"Files which should not be byte-compiled.")
+(defun dgnushack-compile-verbosely ()
+ "Call dgnushack-compile with warnings ENABLED. If you are compiling
+patches to gnus, you should consider modifying make.bat to call
+dgnushack-compile-verbosely. All other users should continue to use
+dgnushack-compile."
+ (dgnushack-compile t))
+
(defun dgnushack-compile (&optional warn)
;;(setq byte-compile-dynamic t)
(unless warn
;;; Code:
-(require 'texinfmt)
+(let ((default-directory (expand-file-name "../lisp/"))
+ (features (cons 'w3-forms (copy-sequence features))))
+ ;; Adjust `load-path' for APEL.
+ (load-file "dgnushack.el"))
+(load-file (expand-file-name "ptexinfmt.el" "./"))
(defun infohack-remove-unsupported ()
(goto-char (point-min))
(setq command-line-args-left nil))
\f
-(let ((default-directory (expand-file-name "../lisp/"))
- (features (cons 'w3-forms (copy-sequence features))))
- ;; Adjust `load-path' for APEL.
- (load-file "dgnushack.el"))
-(load-file (expand-file-name "ptexinfmt.el" "./"))
-
(defun infohack-texi-format (file &optional addsuffix)
(let ((auto-save-default nil)
(find-file-run-dired nil)