mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
(ledit-zap-file, ledit-read-file, ledit-compile-file):
Use temporary-file-directory.
This commit is contained in:
parent
b976e099be
commit
dee8319921
1 changed files with 5 additions and 3 deletions
|
|
@ -33,12 +33,14 @@
|
|||
|
||||
(defvar ledit-mode-map nil)
|
||||
|
||||
(defconst ledit-zap-file (concat "/tmp/" (user-login-name) ".l1")
|
||||
(defconst ledit-zap-file
|
||||
(expand-file-name (concat (user-login-name) ".l1") temporary-file-directory)
|
||||
"File name for data sent to Lisp by Ledit.")
|
||||
(defconst ledit-read-file (concat "/tmp/" (user-login-name) ".l2")
|
||||
(defconst ledit-read-file
|
||||
(expand-file-name (concat (user-login-name) ".l2") temporary-file-directory)
|
||||
"File name for data sent to Ledit by Lisp.")
|
||||
(defconst ledit-compile-file
|
||||
(concat "/tmp/" (user-login-name) ".l4")
|
||||
(expand-file-name (concat (user-login-name) ".l4") temporary-file-directory)
|
||||
"File name for data sent to Lisp compiler by Ledit.")
|
||||
(defconst ledit-buffer "*LEDIT*"
|
||||
"Name of buffer in which Ledit accumulates data to send to Lisp.")
|
||||
|
|
|
|||
Loading…
Reference in a new issue