* elmo-imap4.el (elmo-imap4-parse-overview-string): In regexps
authorokazaki <okazaki>
Sun, 6 Aug 2000 09:34:03 +0000 (09:34 +0000)
committerokazaki <okazaki>
Sun, 6 Aug 2000 09:34:03 +0000 (09:34 +0000)
for server responses, quote `*' regardless of where it appears.

elmo/elmo-imap4.el

index aa0a237..cadc05a 100644 (file)
@@ -852,14 +852,14 @@ BUFFER must be a single-byte buffer."
       (insert string)
       (goto-char (point-min))
       (setq beg (point))
-      (if (re-search-forward "^\* \\([0-9]+\\) FETCH" 
+      (if (re-search-forward "^\\* \\([0-9]+\\) FETCH"
                             nil t)
          (progn
            (setq beg (point))
            (unless elmo-imap4-use-uid
              (setq number (string-to-int (elmo-match-buffer 1))))
            (while (re-search-forward 
-                   "^\* \\([0-9]+\\) FETCH" 
+                   "^\\* \\([0-9]+\\) FETCH"
                    nil t)
              (setq attr (elmo-imap4-make-attributes-object
                          (buffer-substring beg (match-beginning 0))))