* pop3.el: Require `advice' for compiling it in Gnus.
* canlock.el: Bind mail-header-separator when compiling.
+2003-04-29 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * lisp/dgnushack.el: Autoload font-lock for XEmacs -no-autoloads.
+
+ * lisp/pop3.el: Require `advice' for compiling it in Gnus.
+
2003-04-28 Reiner Steib <Reiner.Steib@gmx.de>
* GNUS-NEWS: Fixed X-Draft-Headers entry.
+2003-04-29 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * canlock.el: Bind mail-header-separator when compiling (XEmacs
+ provides it in mail-lib/auto-autoloads.el).
+
2003-04-29 Simon Josefsson <jas@extundo.com>
* mml2015.el (mml2015-pgg-sign): Use mml-sender instead of
(autoload 'base64-encode-string "base64")
(autoload 'mail-fetch-field "mail-utils")
+(eval-when-compile
+ (defvar mail-header-separator))
+
(defgroup canlock nil
"The Cancel-Lock feature."
:group 'applications)
(autoload 'delete-annotation "annotations")
(autoload 'dolist "cl-macs" nil nil 'macro)
(autoload 'enriched-decode "enriched")
+ (autoload 'font-lock-mode "font-lock" nil t)
(autoload 'info "info" nil t)
(autoload 'make-annotation "annotations")
(autoload 'make-display-table "disp-table")
(autoload 'sort-numeric-fields "sort" nil t)
(autoload 'sort-subr "sort")
(autoload 'trace-function-background "trace" nil t)
+ (autoload 'turn-on-font-lock "font-lock" nil t)
(autoload 'w3-do-setup "w3")
(autoload 'w3-prepare-buffer "w3-display")
(autoload 'w3-region "w3-display" nil t)
;;; Code:
-(eval-when-compile (require 'cl))
+(eval-when-compile
+ (require 'cl)
+ ;; For compiling this module in Gnus with XEmacs -no-autoloads.
+ (require 'advice))
;; as-binary-process, open-network-stream-as-binary, write-region-as-binary
(require 'pces)