From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Joe Corneli Newsgroups: gmane.emacs.help Subject: Re: How to suppress echo in *shell* ? Date: Tue, 23 Nov 2004 22:00:59 -0600 Message-ID: References: NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1101268932 8637 80.91.229.6 (24 Nov 2004 04:02:12 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 24 Nov 2004 04:02:12 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Nov 24 05:01:54 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CWoLp-0004l6-00 for ; Wed, 24 Nov 2004 05:01:53 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CWoUx-0000nr-RN for geh-help-gnu-emacs@m.gmane.org; Tue, 23 Nov 2004 23:11:19 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CWoUq-0000nZ-73 for help-gnu-emacs@gnu.org; Tue, 23 Nov 2004 23:11:12 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CWoUp-0000nM-Q8 for help-gnu-emacs@gnu.org; Tue, 23 Nov 2004 23:11:11 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CWoUp-0000nJ-M6 for help-gnu-emacs@gnu.org; Tue, 23 Nov 2004 23:11:11 -0500 Original-Received: from [146.6.139.124] (helo=dell3.ma.utexas.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CWoKz-0006Br-FW for help-gnu-emacs@gnu.org; Tue, 23 Nov 2004 23:01:01 -0500 Original-Received: from linux183.ma.utexas.edu (mail@linux183.ma.utexas.edu [146.6.139.172]) by dell3.ma.utexas.edu (8.11.0.Beta3/8.10.2) with ESMTP id iAO40x804417; Tue, 23 Nov 2004 22:00:59 -0600 Original-Received: from jcorneli by linux183.ma.utexas.edu with local (Exim 3.36 #1 (Debian)) id 1CWoKx-0002xr-00; Tue, 23 Nov 2004 22:00:59 -0600 Original-To: help-gnu-emacs@gnu.org In-reply-to: (message from KKramsch on Wed, 24 Nov 2004 02:30:13 +0000 (UTC)) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:22258 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:22258 In my Emacs shell (i.e. the *shell* buffer) every command gets echoed. For example: e> % date date Tue Nov 23 21:19:03 EST 2004 e> % echo very annoying echo very annoying very annoying How can I fix this? Thanks! Karl -- Sent from a spam-bucket account; I check it once in a blue moon. If you still want to e-mail me, cut out the extension from my address, and make the obvious substitutions on what's left. M-x apropos-variable RET Make the obvious substitutions. - -- Actually the documentation for `comint-process-echoes' might be somewhat misleading, but twiddling the variable works. So do: (add-hook 'comint-mode-hook (lambda () (setq comint-process-echoes t)))