diff options
author | Richard M. Stallman <rms@gnu.org> | 1992-09-26 21:15:01 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1992-09-26 21:15:01 +0000 |
commit | adbb638b63d0b0bbc350ac936cb05bfa707751b3 (patch) | |
tree | 06051b524bbbbf9f8e215de080feee8bdea3a199 /lisp/env.el | |
parent | 0ecaffa86e235297877068413b8be61a396ac57d (diff) | |
download | emacs-adbb638b63d0b0bbc350ac936cb05bfa707751b3.tar.gz |
Doc fix.
Diffstat (limited to 'lisp/env.el')
-rw-r--r-- | lisp/env.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/env.el b/lisp/env.el index a3933f200da..acd23ef25fc 100644 --- a/lisp/env.el +++ b/lisp/env.el @@ -26,7 +26,7 @@ (defun setenv (variable value) "Set the value of the environment variable named VARIABLE to VALUE. VARIABLE and VALUE should both be strings. -This function works by modifying process-environment." +This function works by modifying `process-environment'." (interactive "sSet environment variable: \nsSet %s to value: ") (if (string-match "=" variable) (error "Environment variable name contains `='") |