# HG changeset patch # User Richard M. Stallman # Date 733357643 0 # Node ID cc774e22d0495c0d4d53baa2e10bc30e3d181f25 # Parent d03c7b8ac284936a595d287dedbd0bac2eece9ac (setenv): Renamed back from putenv. diff -r d03c7b8ac284 -r cc774e22d049 lisp/env.el --- 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