From: bg66 Date: Tue, 25 Sep 2007 07:29:45 +0000 (+0000) Subject: (mixi-topic-content-regexp): Fix regexp. X-Git-Tag: mixi-el-1_0_0~24 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=28397085591fe029f2ac1f7d1d917b1fff24a7a7;p=elisp%2Fmixi.git (mixi-topic-content-regexp): Fix regexp. (mixi-realize-topic): Follow the change above. --- diff --git a/ChangeLog b/ChangeLog index dbb954c..5d844dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-09-25 OHASHI Akira + + * mixi.el (mixi-topic-content-regexp): Fix regexp. + (mixi-realize-topic): Follow the change above. + 2007-09-17 OHASHI Akira * mixi.el (mixi-diary-content-regexp): Fix for retrieving photos. diff --git a/mixi.el b/mixi.el index cdc71ff..0ed517d 100644 --- a/mixi.el +++ b/mixi.el @@ -1744,7 +1744,7 @@ Increase this value when unexpected error frequently occurs." (defconst mixi-topic-owner-regexp "  \\(.*?\\)\\(¤µ¤ó\\)?") (defconst mixi-topic-content-regexp - "
\\(\n\\)*
\\(.+\\)
") + "
\\(\\(.\\|\r?\n\\)*?\\)
") (defun mixi-realize-topic (topic &optional page) "Realize a TOPIC." @@ -1771,7 +1771,7 @@ Increase this value when unexpected error frequently occurs." (match-string 2))) (mixi-realization-error 'cannot-find-owner topic)) (if (re-search-forward mixi-topic-content-regexp nil t) - (mixi-topic-set-content topic (match-string 2)) + (mixi-topic-set-content topic (match-string 1)) (mixi-realization-error 'cannot-find-content topic))) (mixi-object-touch topic)))