Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!EDDIE.MIT.EDU!think!compass!worley From: think!compass!worley@EDDIE.MIT.EDU (Dale Worley) Newsgroups: gnu.emacs Subject: send-eof for comint Message-ID: <8902242101.AA00438@galaxy.compass.com> Date: 24 Feb 89 21:01:26 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 12 Olin forgot the C-c C-d command. Add the following in the appropriate places in comint.el: (define-key comint-mode-map "\C-c\C-d" 'comint-eof-subjob) (defun comint-eof-subjob () "Send end-of-file (control-D) to the current subjob." (interactive) (process-send-eof)) Dale worley@compass.com