Function: tramp-compat-make-temp-file

tramp-compat-make-temp-file is a byte-compiled function defined in tramp-compat.el.gz.

Signature

(tramp-compat-make-temp-file F &optional DIR-FLAG)

Documentation

Create a local temporary file (compat function).

Add the extension of F, if existing.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-compat.el.gz
(defsubst tramp-compat-make-temp-file (f &optional dir-flag)
  "Create a local temporary file (compat function).
Add the extension of F, if existing."
  (make-temp-file
   (expand-file-name
    tramp-temp-name-prefix tramp-compat-temporary-file-directory)
   dir-flag (file-name-extension f t)))