(define-derived-mode, derived-mode-make-docstring): Allow `parent' to be nil.
[bpt/emacs.git] / lisp / env.el
CommitLineData
55535639 1;;; env.el --- functions to manipulate environment variables
c88ab9ce 2
2a5becfb 3;; Copyright (C) 1991, 1994, 2000, 2001 Free Software Foundation, Inc.
971571b9 4
e5167999 5;; Maintainer: FSF
d9ecc911 6;; Keywords: processes, unix
e5167999 7
b578f267 8;; This file is part of GNU Emacs.
6449c898 9
b578f267
EN
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
12;; the Free Software Foundation; either version 2, or (at your option)
13;; any later version.
6449c898 14
b578f267
EN
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
6449c898 19
b578f267
EN
20;; You should have received a copy of the GNU General Public License
21;; along with GNU Emacs; see the file COPYING. If not, write to the
22;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23;; Boston, MA 02111-1307, USA.
6449c898 24
d9ecc911
ER
25;;; Commentary:
26
b578f267
EN
27;; UNIX processes inherit a list of name-to-string associations from their
28;; parents called their `environment'; these are commonly used to control
29;; program options. This package permits you to set environment variables
30;; to be passed to any sub-process run under Emacs.
d9ecc911 31
e5167999
ER
32;;; Code:
33
99ac138a
RS
34;; History list for environment variable names.
35(defvar read-envvar-name-history nil)
36
37(defun read-envvar-name (prompt &optional mustmatch)
38 "Read environment variable name, prompting with PROMPT.
8b740009
RS
39Optional second arg MUSTMATCH, if non-nil, means require existing envvar name.
40If it is also not t, RET does not exit if it does non-null completion."
99ac138a
RS
41 (completing-read prompt
42 (mapcar (function
43 (lambda (enventry)
44 (list (substring enventry 0
45 (string-match "=" enventry)))))
46 process-environment)
47 nil mustmatch nil 'read-envvar-name-history))
48
49;; History list for VALUE argument to setenv.
50(defvar setenv-history nil)
51
cbfe666b 52(defun setenv (variable &optional value unset)
6449c898 53 "Set the value of the environment variable named VARIABLE to VALUE.
1bbda2d6
NF
54VARIABLE should be a string. VALUE is optional; if not provided or is
55`nil', the environment variable VARIABLE will be removed.
cbfe666b
RS
56
57Interactively, a prefix argument means to unset the variable.
99ac138a
RS
58Interactively, the current value (if any) of the variable
59appears at the front of the history list when you type in the new value.
60
b6a5978e 61This function works by modifying `process-environment'."
cbfe666b
RS
62 (interactive
63 (if current-prefix-arg
8b740009 64 (list (read-envvar-name "Clear environment variable: " 'exact) nil t)
2a5becfb
GM
65 (let* ((var (read-envvar-name "Set environment variable: " nil))
66 (value (getenv var)))
67 (when value
68 (push value setenv-history))
99ac138a 69 ;; Here finally we specify the args to give call setenv with.
80370c1c
RS
70 (list var (read-from-minibuffer (format "Set %s to value: " var)
71 nil nil nil 'setenv-history
2a5becfb 72 value)))))
cbfe666b 73 (if unset (setq value nil))
6449c898 74 (if (string-match "=" variable)
1bbda2d6 75 (error "Environment variable name `%s' contains `='" variable)
971571b9 76 (let ((pattern (concat "\\`" (regexp-quote (concat variable "="))))
7e68de56 77 (case-fold-search nil)
cbfe666b
RS
78 (scan process-environment)
79 found)
7fd81709
RS
80 (if (string-equal "TZ" variable)
81 (set-time-zone-rule value))
cbfe666b
RS
82 (while scan
83 (cond ((string-match pattern (car scan))
84 (setq found t)
85 (if (eq nil value)
86 (setq process-environment (delq (car scan) process-environment))
87 (setcar scan (concat variable "=" value)))
88 (setq scan nil)))
89 (setq scan (cdr scan)))
90 (or found
91 (if value
a3cda273 92 (setq process-environment
cbfe666b
RS
93 (cons (concat variable "=" value)
94 process-environment)))))))
49116ac0 95
b1e11b4f
GM
96(defun getenv (variable)
97 "Get the value of environment variable VARIABLE.
98VARIABLE should be a string. Value is nil if VARIABLE is undefined in
99the environment. Otherwise, value is a string.
100
101This function consults the variable `process-environment'
102for its value."
103 (interactive (list (read-envvar-name "Get environment variable: " t)))
104 (let ((value (getenv-internal variable)))
105 (when (interactive-p)
106 (message "%s" (if value value "Not set")))
107 value))
108
1bbda2d6
NF
109(provide 'env)
110
111;;; env.el ends here