(gnus-article-sort-by-most-recent-date): New function, added for symmetry.
[gnus] / lisp / gnus-undo.el
index 802ae63..5c45d32 100644 (file)
@@ -154,9 +154,6 @@ FORMS may use backtick quote syntax."
      ;; We are on a boundary, so we create a new action.
      (gnus-undo-boundary
       (push (list function) gnus-undo-actions)
-      ;; Don't let the undo actions grow infinitely.
-      (when (> (length gnus-undo-actions) 100)
-       (setcdr (nthcdr 100 gnus-undo-actions) nil))
       (setq gnus-undo-boundary nil))
      ;; Prepend the function to an old action.
      (gnus-undo-actions
@@ -191,5 +188,4 @@ A numeric argument serves as a repeat count."
 
 (provide 'gnus-undo)
 
-;; arch-tag: 0d787bc7-787d-499a-837f-211d2cb07f2e
 ;;; gnus-undo.el ends here