Mercurial > emacs
comparison lisp/eshell/esh-proc.el @ 91204:53108e6cea98
Merge from emacs--devo--0
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-294
author | Miles Bader <miles@gnu.org> |
---|---|
date | Thu, 06 Dec 2007 09:51:45 +0000 |
parents | 880960b70474 d8ed6bf7f010 |
children | 606f2d163a64 |
comparison
equal
deleted
inserted
replaced
91203:db40129142b2 | 91204:53108e6cea98 |
---|---|
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 the | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 ;; Boston, MA 02110-1301, USA. | 23 ;; Boston, MA 02110-1301, USA. |
24 | 24 |
25 ;;; Commentary: | |
26 | |
25 (provide 'esh-proc) | 27 (provide 'esh-proc) |
26 | 28 |
27 (eval-when-compile (require 'esh-maint)) | 29 (eval-when-compile |
30 (require 'eshell) | |
31 (require 'esh-util)) | |
28 | 32 |
29 (defgroup eshell-proc nil | 33 (defgroup eshell-proc nil |
30 "When Eshell invokes external commands, it always does so | 34 "When Eshell invokes external commands, it always does so |
31 asynchronously, so that Emacs isn't tied up waiting for the process to | 35 asynchronously, so that Emacs isn't tied up waiting for the process to |
32 finish." | 36 finish." |
33 :tag "Process management" | 37 :tag "Process management" |
34 :group 'eshell) | 38 :group 'eshell) |
35 | |
36 ;;; Commentary: | |
37 | 39 |
38 ;;; User Variables: | 40 ;;; User Variables: |
39 | 41 |
40 (defcustom eshell-proc-load-hook '(eshell-proc-initialize) | 42 (defcustom eshell-proc-load-hook '(eshell-proc-initialize) |
41 "*A hook that gets run when `eshell-proc' is loaded." | 43 "*A hook that gets run when `eshell-proc' is loaded." |