Function: tar-parse-octal-integer-safe

tar-parse-octal-integer-safe is a byte-compiled function defined in tar-mode.el.gz.

Signature

(tar-parse-octal-integer-safe STRING)

Source Code

;; Defined in /usr/src/emacs/lisp/tar-mode.el.gz
(defun tar-parse-octal-integer-safe (string)
  (if (zerop (length string)) (error "Empty string"))
  (mapc (lambda (c)
	  (if (or (< c ?0) (> c ?7))
	      (error "`%c' is not an octal digit" c)))
	string)
  (tar-parse-octal-integer string))