Function: tramp-archive-handle-not-implemented

tramp-archive-handle-not-implemented is a byte-compiled function defined in tramp-archive.el.gz.

Signature

(tramp-archive-handle-not-implemented OPERATION &rest ARGS)

Documentation

Generic handler for operations not implemented for file archives.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-archive.el.gz
(defun tramp-archive-handle-not-implemented (operation &rest args)
  "Generic handler for operations not implemented for file archives."
  (let ((v (ignore-errors
	     (tramp-archive-dissect-file-name
	      (apply #'tramp-archive-file-name-for-operation operation args)))))
    (tramp-message v 10 "%s" (cons operation args))
    (tramp-error
     v 'file-error
     "Operation `%s' not implemented for file archives" operation)))