# HG changeset patch # User Glenn Morris # Date 1197350524 0 # Node ID e4e336c0677eff8477d75d3c805cca8439aca323 # Parent 9b1073650b185badb3c890c660b66d81eeb5ed9d Add declare-function compatibility definition. (mail-header-parse-content-type, message-narrow-to-head): Autoload. (message-fetch-field): Declare as a function. diff -r 9b1073650b18 -r e4e336c0677e lisp/gnus/rfc1843.el --- a/lisp/gnus/rfc1843.el Tue Dec 11 05:21:18 2007 +0000 +++ b/lisp/gnus/rfc1843.el Tue Dec 11 05:22:04 2007 +0000 @@ -34,6 +34,10 @@ ;;; Code: +;; For Emacs < 22.2. +(eval-and-compile + (unless (fboundp 'declare-function) (defmacro declare-function (&rest r)))) + (eval-when-compile (require 'cl)) (require 'mm-util) @@ -139,6 +143,10 @@ (aset s (incf i) (+ v (if (< v 63) 64 98)))))) s)) +(autoload 'mail-header-parse-content-type "mail-parse") +(autoload 'message-narrow-to-head "message") +(declare-function message-fetch-field "message" (header &optional not-all)) + (defun rfc1843-decode-article-body () "Decode HZ encoded text in the article body." (if (string-match (concat "\\<\\(" rfc1843-newsgroups-regexp "\\)\\>")