diff lisp/prim/process.el @ 155:43dd3413c7c7 r20-3b4

Import from CVS: tag r20-3b4
author cvs
date Mon, 13 Aug 2007 09:39:39 +0200
parents 25f70ba0133c
children 9ad43877534d
line wrap: on
line diff
--- a/lisp/prim/process.el	Mon Aug 13 09:38:27 2007 +0200
+++ b/lisp/prim/process.el	Mon Aug 13 09:39:39 2007 +0200
@@ -1,8 +1,12 @@
 ;;; process.el --- commands for subprocesses; split out of simple.el
 
-;; Copyright (C) 1985, 1986, 1987, 1993, 1994 Free Software Foundation, Inc.
+;; Copyright (C) 1985-1987, 1993, 1994, 1997 Free Software Foundation, Inc.
 ;; Copyright (C) 1995 Ben Wing.
 
+;; Author: Ben Wing
+;; Maintainer: XEmacs Development Team
+;; Keywords: internal, processes
+
 ;; This file is part of XEmacs.
 
 ;; XEmacs is free software; you can redistribute it and/or modify it
@@ -22,6 +26,8 @@
 
 ;;; Synched up with: FSF 19.30.
 
+;;; Commentary:
+
 ;;; Code:
 
 
@@ -158,7 +164,6 @@
       (if (string-match "[ \t]*&[ \t]*$" command)
 	  ;; Command ending with ampersand means asynchronous.
 	  (progn
-	    (require 'background) ; whizzy comint background code
 	    (background (substring command 0 (match-beginning 0))))
 	(shell-command-on-region (point) (point) command output-buffer)))))