Secure temporary file: Difference between revisions

Emacs Lisp: Remove obsolete information
(Replaced posix function by function "createTempFile" from new module "tempfiles" provided by version 1.6.0.)
(Emacs Lisp: Remove obsolete information)
Line 157:
 
<lang Lisp>(make-temp-file "prefix")
;; => "/tmp/prefix25452LPe"</lang>
=>
"/tmp/prefix25452LPe"</lang>
 
<code>make-temp-file</code> is available in GNU Emacs 21 up, but not XEmacs 21.4. The Gnus included with XEmacs 21.4 has an <code>mm-make-temp-file</code> in its <code>mm-util.el</code>, or the [[APEL]] library can supply a <code>make-temp-file</code> (and for Emacs 20 too).
 
=={{header|Fortran}}==
Anonymous user