(tar-parse-octal-long-integer): Return list, not vector.
authorKarl Heuer <kwzh@gnu.org>
Tue, 21 Mar 1995 02:19:38 +0000 (02:19 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 21 Mar 1995 02:19:38 +0000 (02:19 +0000)
lisp/tar-mode.el

index 7375e54..54d2af4 100644 (file)
@@ -277,7 +277,7 @@ write-date, checksum, link-type, and link-name."
   (if (null start) (setq start 0))
   (if (null end) (setq end (length string)))
   (if (= (aref string start) 0)
-      [0 0]
+      (list 0 0)
     (let ((lo 0)
          (hi 0))
       (while (< start end)