2006-12-25 OHASHI Akira <bg66@koka-in.org>
+ * sb-mixi.el (shimbun-get-headers): Use `mixi-bbs-p'.
+ (shimbun-mixi-get-comment-p): Abolish.
+ (shimbun-mixi-get-headers): Follow the change above.
+
+2006-12-25 OHASHI Akira <bg66@koka-in.org>
+
* mixi.el (mixi-event-time-regexp): Fix regexp.
(mixi-event-title-regexp): Ditto.
(mixi-event-owner-regexp): Ditto.
:group 'shimbun
:type 'integer)
-(defcustom shimbun-mixi-get-comment-p t
- "*If non-nil, get diaries or BBSes together with its comments."
- :group 'shimbun
- :type 'boolean)
-
(defcustom shimbun-mixi-logout-p nil
"*If non-ni, logout from mixi when shimbun server was closed."
:group 'shimbun
0 0
(shimbun-mixi-make-xref object))
headers)
- (when (and shimbun-mixi-get-comment-p
- (or (eq class 'mixi-diary)
- (eq class 'mixi-topic)
- (eq class 'mixi-event)))
+ (when (or (eq class 'mixi-diary)
+ (mixi-bbs-p object))
(let ((comments (mixi-get-comments object range)))
(mapc (lambda (header)
(push header headers))
((eq class 'mixi-community)
(setq objects (mixi-get-bbses object range)))
((or (eq class 'mixi-diary)
- (eq class 'mixi-topic)
- (eq class 'mixi-event))
+ (mixi-bbs-p object))
(setq objects (mixi-get-comments object range)))
(t (error (concat (symbol-name class)
" is not supported yet.")))))