diff options
| author | Richard M. Stallman | 1999-08-28 18:24:28 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1999-08-28 18:24:28 +0000 |
| commit | 0492dd4a868e7a0494d7cd09abfbc27d959ac645 (patch) | |
| tree | f9393efb1fd8b18b7ca5fe95f2d17291f6891843 | |
| parent | dee83199211b84efff5f5497abd16689096d47ec (diff) | |
| download | emacs-0492dd4a868e7a0494d7cd09abfbc27d959ac645.tar.gz emacs-0492dd4a868e7a0494d7cd09abfbc27d959ac645.zip | |
(te-terminfo-directory): Use temporary-file-directory.
| -rw-r--r-- | lisp/terminal.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/terminal.el b/lisp/terminal.el index 275884cade6..e96bad98c86 100644 --- a/lisp/terminal.el +++ b/lisp/terminal.el | |||
| @@ -187,7 +187,9 @@ performance." | |||
| 187 | ;; Required to support terminfo systems | 187 | ;; Required to support terminfo systems |
| 188 | (defconst te-terminal-name-prefix "emacs-em" | 188 | (defconst te-terminal-name-prefix "emacs-em" |
| 189 | "Prefix used for terminal type names for Terminfo.") | 189 | "Prefix used for terminal type names for Terminfo.") |
| 190 | (defconst te-terminfo-directory "/tmp/emacs-terminfo/" | 190 | (defconst te-terminfo-directory |
| 191 | (file-name-as-directory | ||
| 192 | (expand-file-name "emacs-terminfo" temporary-file-directory)) | ||
| 191 | "Directory used for run-time terminal definition files for Terminfo.") | 193 | "Directory used for run-time terminal definition files for Terminfo.") |
| 192 | (defvar te-terminal-name nil) | 194 | (defvar te-terminal-name nil) |
| 193 | 195 | ||