diff options
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/eshell/esh-var.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3e71e01330a..d4af5ae71ad 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2002-02-28 Colin Walters <walters@verbum.org> | 1 | 2002-02-28 Colin Walters <walters@verbum.org> |
| 2 | 2 | ||
| 3 | * eshell/esh-var.el (eshell-parse-variable-ref): Use | ||
| 4 | `make-temp-file'. | ||
| 5 | |||
| 3 | * calc/calc-graph.el (calc-gnuplot-tempfile): Don't expand against | 6 | * calc/calc-graph.el (calc-gnuplot-tempfile): Don't expand against |
| 4 | `temporary-file-directory'; we now do that in | 7 | `temporary-file-directory'; we now do that in |
| 5 | `calc-graph-file-cache'. | 8 | `calc-graph-file-cache'. |
diff --git a/lisp/eshell/esh-var.el b/lisp/eshell/esh-var.el index c24ee7d2ecf..e47ba5e0809 100644 --- a/lisp/eshell/esh-var.el +++ b/lisp/eshell/esh-var.el | |||
| @@ -427,7 +427,7 @@ Possible options are: | |||
| 427 | (let ((end (eshell-find-delimiter ?\< ?\>))) | 427 | (let ((end (eshell-find-delimiter ?\< ?\>))) |
| 428 | (if (not end) | 428 | (if (not end) |
| 429 | (throw 'eshell-incomplete ?\<) | 429 | (throw 'eshell-incomplete ?\<) |
| 430 | (let* ((temp (make-temp-name temporary-file-directory)) | 430 | (let* ((temp (make-temp-file temporary-file-directory)) |
| 431 | (cmd (concat (buffer-substring (1+ (point)) end) | 431 | (cmd (concat (buffer-substring (1+ (point)) end) |
| 432 | " > " temp))) | 432 | " > " temp))) |
| 433 | (prog1 | 433 | (prog1 |