Mercurial > emacs
annotate lisp/env.el @ 2032:20cc6c34421c
(Info-summary): Handle any event when flushing the display.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 06 Mar 1993 06:15:39 +0000 |
parents | 678ff000d9c8 |
children | 9e7ec92a4fdf |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; setenv.el --- functions to manipulate environment variables. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
1185 | 3 ;;; Copyright Free Software Foundation 1991 |
4 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
5 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: extensions |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
7 |
489 | 8 ;;; This file is part of GNU Emacs. |
9 | |
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 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
12 ;;; the Free Software Foundation; either version 2, or (at your option) |
489 | 13 ;;; any later version. |
14 | |
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. | |
19 | |
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 | |
22 ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
24 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
25 |
1218
678ff000d9c8
(setenv): Make it autoload.
Richard M. Stallman <rms@gnu.org>
parents:
1216
diff
changeset
|
26 ;;;###autoload |
489 | 27 (defun setenv (variable value) |
28 "Set the value of the environment variable named VARIABLE to VALUE. | |
29 VARIABLE and VALUE should both be strings. | |
1216 | 30 This function works by modifying `process-environment'." |
1185 | 31 (interactive "sSet environment variable: \nsSet %s to value: ") |
489 | 32 (if (string-match "=" variable) |
1185 | 33 (error "Environment variable name contains `='") |
34 (let ((pattern (concat "\\`" (regexp-quote (concat variable "=")))) | |
489 | 35 (scan process-environment)) |
36 (while scan | |
37 (cond | |
38 ((string-match pattern (car scan)) | |
39 (setcar scan (concat variable "=" value)) | |
40 (setq scan nil)) | |
41 ((null (setq scan (cdr scan))) | |
42 (setq process-environment | |
43 (cons (concat variable "=" value) process-environment)))))))) | |
584 | 44 |
45 (provide 'setenv) | |
46 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
47 ;;; setenv.el ends here |