Function: tar-current-descriptor

tar-current-descriptor is a byte-compiled function defined in tar-mode.el.gz.

Signature

(tar-current-descriptor &optional NOERROR)

Documentation

Return the tar-descriptor of the current line, or signals an error.

Source Code

;; Defined in /usr/src/emacs/lisp/tar-mode.el.gz
(defun tar-current-descriptor (&optional noerror)
  "Return the tar-descriptor of the current line, or signals an error."
  ;; I wish lines had plists, like in ZMACS...
  (or (nth (tar-current-position)
	   tar-parse-info)
      (if noerror
	  nil
	  (error "This line does not describe a tar-file entry"))))