diff options
| author | Richard M. Stallman | 1999-08-28 18:23:49 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1999-08-28 18:23:49 +0000 |
| commit | dee83199211b84efff5f5497abd16689096d47ec (patch) | |
| tree | 18d07eb722eb1fa04c0f0d2d0535d0e60c5d434a | |
| parent | b976e099be16b765534aa96758d4c829c6dc8968 (diff) | |
| download | emacs-dee83199211b84efff5f5497abd16689096d47ec.tar.gz emacs-dee83199211b84efff5f5497abd16689096d47ec.zip | |
(ledit-zap-file, ledit-read-file, ledit-compile-file):
Use temporary-file-directory.
| -rw-r--r-- | lisp/ledit.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/ledit.el b/lisp/ledit.el index 230dd9444ee..a54e976cf85 100644 --- a/lisp/ledit.el +++ b/lisp/ledit.el | |||
| @@ -33,12 +33,14 @@ | |||
| 33 | 33 | ||
| 34 | (defvar ledit-mode-map nil) | 34 | (defvar ledit-mode-map nil) |
| 35 | 35 | ||
| 36 | (defconst ledit-zap-file (concat "/tmp/" (user-login-name) ".l1") | 36 | (defconst ledit-zap-file |
| 37 | (expand-file-name (concat (user-login-name) ".l1") temporary-file-directory) | ||
| 37 | "File name for data sent to Lisp by Ledit.") | 38 | "File name for data sent to Lisp by Ledit.") |
| 38 | (defconst ledit-read-file (concat "/tmp/" (user-login-name) ".l2") | 39 | (defconst ledit-read-file |
| 40 | (expand-file-name (concat (user-login-name) ".l2") temporary-file-directory) | ||
| 39 | "File name for data sent to Ledit by Lisp.") | 41 | "File name for data sent to Ledit by Lisp.") |
| 40 | (defconst ledit-compile-file | 42 | (defconst ledit-compile-file |
| 41 | (concat "/tmp/" (user-login-name) ".l4") | 43 | (expand-file-name (concat (user-login-name) ".l4") temporary-file-directory) |
| 42 | "File name for data sent to Lisp compiler by Ledit.") | 44 | "File name for data sent to Lisp compiler by Ledit.") |
| 43 | (defconst ledit-buffer "*LEDIT*" | 45 | (defconst ledit-buffer "*LEDIT*" |
| 44 | "Name of buffer in which Ledit accumulates data to send to Lisp.") | 46 | "Name of buffer in which Ledit accumulates data to send to Lisp.") |