]> code.delx.au - gnu-emacs/blobdiff - lisp/env.el
(keyboard-quit): Run deactivate-mark-hook.
[gnu-emacs] / lisp / env.el
index 145c164ddde72f35641086e2268636e289e27076..256a3338e60c32de8c8e0d5f008f889ce14873a0 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