Mercurial > hg > xemacs-beta
comparison lisp/process.el @ 227:0e522484dd2a r20-5b12
Import from CVS: tag r20-5b12
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:12:37 +0200 |
parents | 41ff10fd062f |
children | 727739f917cb |
comparison
equal
deleted
inserted
replaced
226:eea38c7ad7b4 | 227:0e522484dd2a |
---|---|
31 ;; This file is dumped with XEmacs. | 31 ;; This file is dumped with XEmacs. |
32 | 32 |
33 ;;; Code: | 33 ;;; Code: |
34 | 34 |
35 | 35 |
36 (defgroup processes nil | |
37 "Process, subshell, compilation, and job control support." | |
38 :group 'external | |
39 :group 'development) | |
40 | |
41 (defgroup processes-basics nil | |
42 "Basic stuff dealing with processes." | |
43 :group 'processes) | |
44 | |
45 (defgroup execute nil | |
46 "Executing external commands." | |
47 :group 'processes) | |
48 | |
49 | |
36 (defvar shell-command-switch "-c" | 50 (defvar shell-command-switch "-c" |
37 "Switch used to have the shell execute its command line argument.") | 51 "Switch used to have the shell execute its command line argument.") |
38 | 52 |
39 (defun start-process-shell-command (name buffer &rest args) | 53 (defun start-process-shell-command (name buffer &rest args) |
40 "Start a program in a subprocess. Return the process object for it. | 54 "Start a program in a subprocess. Return the process object for it. |