diff options
| author | Karoly Lorentey | 2006-05-10 15:04:01 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2006-05-10 15:04:01 +0000 |
| commit | 8dadeb1e1f78c7be07db5ae78aa9eed58d272a4e (patch) | |
| tree | 6262988e87d6b347a8c90fcc3c5b49f9bb5b36e1 /lisp/env.el | |
| parent | f6cf85ac95e469835a2643024f995b471a4c5d52 (diff) | |
| parent | 9a4d87c8d5f4503d67d5155eae6d543cc31f86d0 (diff) | |
| download | emacs-8dadeb1e1f78c7be07db5ae78aa9eed58d272a4e.tar.gz emacs-8dadeb1e1f78c7be07db5ae78aa9eed58d272a4e.zip | |
Merged from emacs@sv.gnu.org
Patches applied:
* emacs@sv.gnu.org/emacs--devo--0--patch-266
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-267
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-268
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-269
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-270
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-271
Rename "field-at-point" to "field-at-pos"
* emacs@sv.gnu.org/emacs--devo--0--patch-272
(comint-insert-input): Remove redundant calls to setq and goto-char
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-556
Diffstat (limited to 'lisp/env.el')
| -rw-r--r-- | lisp/env.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/env.el b/lisp/env.el index 66d505ee011..d0c2208fc6f 100644 --- a/lisp/env.el +++ b/lisp/env.el | |||
| @@ -133,7 +133,7 @@ a side-effect." | |||
| 133 | (let* ((var (read-envvar-name "Set environment variable: " nil)) | 133 | (let* ((var (read-envvar-name "Set environment variable: " nil)) |
| 134 | (value (getenv var))) | 134 | (value (getenv var))) |
| 135 | (when value | 135 | (when value |
| 136 | (push value setenv-history)) | 136 | (add-to-history 'setenv-history value)) |
| 137 | ;; Here finally we specify the args to give call setenv with. | 137 | ;; Here finally we specify the args to give call setenv with. |
| 138 | (list var | 138 | (list var |
| 139 | (read-from-minibuffer (format "Set %s to value: " var) | 139 | (read-from-minibuffer (format "Set %s to value: " var) |