(setenv): Renamed back from putenv.
authorRichard M. Stallman <rms@gnu.org>
Sun, 28 Mar 1993 22:27:23 +0000 (22:27 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 28 Mar 1993 22:27:23 +0000 (22:27 +0000)
lisp/env.el

index 145c164..256a333 100644 (file)
@@ -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 @@ This function works by modifying `process-environment'."
          (setq process-environment
                (cons (concat variable "=" value) process-environment))))))))
 
-;; Provide backward-contemptibility. 
-(fset 'setenv 'putenv)
-
 (provide 'env)
 
 ;;; env.el ends here