Mercurial > emacs
changeset 2410:cc774e22d049
(setenv): Renamed back from putenv.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 28 Mar 1993 22:27:23 +0000 |
parents | d03c7b8ac284 |
children | afb11b3822c2 |
files | lisp/env.el |
diffstat | 1 files changed, 1 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/env.el Sun Mar 28 22:07:36 1993 +0000 +++ b/lisp/env.el Sun Mar 28 22:27:23 1993 +0000 @@ -31,7 +31,7 @@ ;;; Code: ;;;###autoload -(defun putenv (variable &optional value) +(defun setenv (variable &optional value) "Set the value of the environment variable named VARIABLE to VALUE. VARIABLE should be a string. VALUE is optional; if not provided or is `nil', the environment variable VARIABLE will be removed. @@ -52,9 +52,6 @@ (setq process-environment (cons (concat variable "=" value) process-environment)))))))) -;; Provide backward-contemptibility. -(fset 'setenv 'putenv) - (provide 'env) ;;; env.el ends here