(tar-summarize-buffer): Fix "done" message.
authorKarl Heuer <kwzh@gnu.org>
Wed, 24 Jan 1996 23:31:12 +0000 (23:31 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 24 Jan 1996 23:31:12 +0000 (23:31 +0000)
(tar-summarize-buffer):
Insert summary lines in same order as tar-parse-info.

lisp/tar-mode.el

index 311212d..1bc65f0 100644 (file)
@@ -457,7 +457,7 @@ is visible (and the real data of the buffer is hidden)."
     ;; A tar file should end with a block or two of nulls,
     ;; but let's not get a fatal error if it doesn't.
     (if (eq tokens 'empty-tar-block)
-       (message "Parsing tar file...done.")
+       (message "Parsing tar file...done")
       (message "Warning: premature EOF parsing tar file")))
   (save-excursion
     (goto-char (point-min))
@@ -465,7 +465,7 @@ is visible (and the real data of the buffer is hidden)."
          (summaries nil))
       ;; Collect summary lines and insert them all at once since tar files
       ;; can be pretty big.
-      (tar-dolist (tar-desc tar-parse-info)
+      (tar-dolist (tar-desc (reverse tar-parse-info))
        (setq summaries
              (cons (tar-header-block-summarize (tar-desc-tokens tar-desc))
                    (cons "\n"