comparison lisp/gnus/mml2015.el @ 110918:236342431786

nnimap.el (gnutls-negotiate): Silence the byte compiler. *.el: Fix comment for declare-function.
author Katsumi Yamaoka <yamaoka@jpl.org>
date Mon, 11 Oct 2010 23:29:33 +0000
parents 6c6f3972c99c
children 88b67190d0b2
comparison
equal deleted inserted replaced
110917:3243e7055d49 110918:236342431786
26 ;; RFC 2015 is updated by RFC 3156, this file should be compatible 26 ;; RFC 2015 is updated by RFC 3156, this file should be compatible
27 ;; with both. 27 ;; with both.
28 28
29 ;;; Code: 29 ;;; Code:
30 30
31 ;; For Emacs < 22.2.
32 (eval-and-compile 31 (eval-and-compile
32 ;; For Emacs <22.2 and XEmacs.
33 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))) 33 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r)))
34 34
35 (if (locate-library "password-cache") 35 (if (locate-library "password-cache")
36 (require 'password-cache) 36 (require 'password-cache)
37 (require 'password))) 37 (require 'password)))