]> git.eshelyaron.com Git - emacs.git/commitdiff
nnimap MODSEQ cleanup
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 13 Oct 2020 17:21:40 +0000 (10:21 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 13 Oct 2020 17:25:40 +0000 (10:25 -0700)
* lisp/gnus/nnimap.el (nnimap-parse-flags):
Remove old hack that deletes MODSEQ entries in the buffer, as
Emacs now has bignums and so won't misparse MODSEQs (Bug#38938).

lisp/gnus/nnimap.el

index d797e893f51017eb898afac3799caf047a41f9a1..8a88e0e6e644750611afc19927df8ef9e442b4e4 100644 (file)
@@ -1772,11 +1772,6 @@ If LIMIT, first try to limit the search to the N last articles."
   ;; read it.
   (subst-char-in-region (point-min) (point-max)
                        ?\\ ?% t)
-  ;; Remove any MODSEQ entries in the buffer, because they may contain
-  ;; numbers that are too large for 32-bit Emacsen.
-  (while (re-search-forward " MODSEQ ([0-9]+)" nil t)
-    (replace-match "" t t))
-  (goto-char (point-min))
   (let (start end articles groups uidnext elems permanent-flags
              uidvalidity vanished highestmodseq)
     (dolist (elem sequences)
@@ -1803,8 +1798,9 @@ If LIMIT, first try to limit the search to the N last articles."
                 (setq uidvalidity
                       (and (re-search-forward "UIDVALIDITY \\([0-9]+\\)"
                                               end t)
-                           ;; Store UIDVALIDITY as a string, as it's
-                           ;; too big for 32-bit Emacsen, usually.
+                           ;; Store UIDVALIDITY as a string; before bignums,
+                           ;; it was usually too big for 32-bit Emacsen,
+                           ;; and we don't want to change the format now.
                            (match-string 1)))
                 (goto-char start)
                 (setq vanished