Mercurial > emacs
comparison lisp/env.el @ 2315:9e7ec92a4fdf
Added or corrected Commentary headers
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Mon, 22 Mar 1993 16:53:22 +0000 |
parents | 678ff000d9c8 |
children | 05d8916e4cde |
comparison
equal
deleted
inserted
replaced
2314:a47c59ea019b | 2315:9e7ec92a4fdf |
---|---|
1 ;;; setenv.el --- functions to manipulate environment variables. | 1 ;;; setenv.el --- functions to manipulate environment variables. |
2 | 2 |
3 ;;; Copyright Free Software Foundation 1991 | 3 ;;; Copyright Free Software Foundation 1991 |
4 | 4 |
5 ;; Maintainer: FSF | 5 ;; Maintainer: FSF |
6 ;; Keywords: extensions | 6 ;; Keywords: processes, unix |
7 | 7 |
8 ;;; This file is part of GNU Emacs. | 8 ;;; This file is part of GNU Emacs. |
9 | 9 |
10 ;;; GNU Emacs is free software; you can redistribute it and/or modify | 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 | 11 ;;; it under the terms of the GNU General Public License as published by |
18 ;;; GNU General Public License for more details. | 18 ;;; GNU General Public License for more details. |
19 | 19 |
20 ;;; You should have received a copy of the GNU General Public License | 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 | 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. | 22 ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
23 | |
24 ;;; Commentary: | |
25 | |
26 ;; UNIX processes inherit a list of name-to-string associations from | |
27 ;; their parents called their `environment'; these are commonly used | |
28 ;; to control program options. This package permits you to set | |
29 ;; environment variables to be passed to any sub-process run under Emacs. | |
23 | 30 |
24 ;;; Code: | 31 ;;; Code: |
25 | 32 |
26 ;;;###autoload | 33 ;;;###autoload |
27 (defun setenv (variable value) | 34 (defun setenv (variable value) |