* lisp/nnheader.el (mm-string-make-unibyte): New function.
* lisp/utf7.el: Require `mm-util' only when compiling.
+2004-05-21 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * lisp/nnheader.el (mm-string-make-unibyte): New function.
+
+ * lisp/utf7.el: Require `mm-util' only when compiling.
+
2004-05-02 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
* gnus-namazu.el (gnus-namazu-imap-group-prefix): Abolished.
;;; Setup Code:
-(defconst nnir-version "$Id: nnir.el,v 1.1.6.1.4.3 2004-04-05 23:08:14 yamaoka Exp $"
- "Version of NNIR.")
-
(require 'cl)
(require 'nnoo)
(require 'gnus-group)
;;; ssl.el,v --- ssl functions for emacsen without them builtin
-;; Author: $Author: yamaoka $
-;; Created: $Date: 2004-01-05 03:24:10 $
-;; Version: $Revision: 1.1.6.1.8.1 $
;; Keywords: comm
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+2004-05-21 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * gnus-start.el (gnus-get-unread-articles): Don't invalidate
+ active for foreign groups even if the group level is higher than
+ the specified value.
+
2004-05-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
* gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
(when (fboundp (intern (concat (symbol-name (car method))
"-request-update-info")))
(inline (gnus-request-update-info info method))))
- (setq active 'ignore)))
+ (setq active nil)))
;; These groups are native or secondary.
((> (gnus-info-level info) level)
;; We don't want these groups.
"Return non-nil if SYM is a coding system."
(or (and (fboundp 'find-coding-system) (find-coding-system sym))
(and (fboundp 'coding-system-p) (coding-system-p sym))))
- (defalias 'mm-coding-system-p 'nnheader-coding-system-p))
+ (defalias 'mm-coding-system-p 'nnheader-coding-system-p)
+
+ (defalias 'mm-string-make-unibyte
+ (if (fboundp 'string-make-unibyte)
+ 'string-make-unibyte
+ 'identity)))
;; mail-parse stuff.
(unless (featurep 'mail-parse)
;;; Code:
(require 'base64)
-(eval-when-compile (require 'cl))
-(require 'mm-util)
+(eval-when-compile
+ (require 'cl)
+ (require 'mm-util))
(defconst utf7-direct-encoding-chars " -%'-*,-[]-}"
"Character ranges which do not need escaping in UTF-7.")