diff options
author | Jim Blandy <jimb@redhat.com> | 1992-03-16 20:39:07 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-03-16 20:39:07 +0000 |
commit | e8151d91bd02af2b60974c2a439450c81bd24974 (patch) | |
tree | 52141382c5b7e71a4fe612c0dfaff741778262b9 /lisp/env.el | |
parent | 18806e8f99c254f8f7980ce593dc1532d8ff3373 (diff) | |
download | emacs-e8151d91bd02af2b60974c2a439450c81bd24974.tar.gz |
*** empty log message ***
Diffstat (limited to 'lisp/env.el')
-rw-r--r-- | lisp/env.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/env.el b/lisp/env.el index 6adc9ec7c0c..3e494645610 100644 --- a/lisp/env.el +++ b/lisp/env.el @@ -17,8 +17,6 @@ ;;; along with GNU Emacs; see the file COPYING. If not, write to ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -(provide 'setenv) - (defun setenv (variable value) "Set the value of the environment variable named VARIABLE to VALUE. VARIABLE and VALUE should both be strings. @@ -35,3 +33,6 @@ This function works by modifying process-environment." ((null (setq scan (cdr scan))) (setq process-environment (cons (concat variable "=" value) process-environment)))))))) + +(provide 'setenv) + |