aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/tar-mode.el
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1995-03-21 02:19:38 +0000
committerKarl Heuer <[email protected]>1995-03-21 02:19:38 +0000
commit806cba9c00030e0d9b955de1617238f91f8182ba (patch)
treedbcc2ce36598af6deeebc3e4e323eb5d0311cfe9 /lisp/tar-mode.el
parent2c9ad69fecd6f560cb6bc4bd9021d6acb7c39e0a (diff)
(tar-parse-octal-long-integer): Return list, not vector.
Diffstat (limited to 'lisp/tar-mode.el')
-rw-r--r--lisp/tar-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el
index 7375e5411e..54d2af4773 100644
--- a/lisp/tar-mode.el
+++ b/lisp/tar-mode.el
@@ -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)