summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2019-07-23 23:25:05 -0400
committerKyle Meyer <kyle@kyleam.com>2019-07-23 23:25:05 -0400
commit29f96ef1b7e67ee61e6840537bd8d1feb271a739 (patch)
tree61a602024817276a6ffc04174031598aac03ef76
parent09a15f4d7f474a0dc38193a955e1929984a7e803 (diff)
parent9a543b97a54bddcf5fda624389425d2dec9cf2f7 (diff)
downloadorg-mode-29f96ef1b7e67ee61e6840537bd8d1feb271a739.tar.gz
Merge branch 'maint'
-rw-r--r--lisp/ol-gnus.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ol-gnus.el b/lisp/ol-gnus.el
index 9c1c2be..8ac36f0 100644
--- a/lisp/ol-gnus.el
+++ b/lisp/ol-gnus.el
@@ -244,7 +244,9 @@ If `org-store-link' was called with a prefix arg the meaning of
(let ((articles 1)
group-opened)
(while (and (not group-opened)
- ;; Stop on integer overflows.
+ ;; Stop on integer overflows. Note: We
+ ;; can drop this once we require at least
+ ;; Emacs 27, which supports bignums.
(> articles 0))
(setq group-opened (gnus-group-read-group articles t group))
(setq articles (if (< articles 16)