From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mentus Sarovar Newsgroups: gmane.emacs.help Subject: RE: ielm freeze Date: Thu, 22 Mar 2012 10:00:06 +0100 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: dough.gmane.org 1332406829 6048 80.91.229.3 (22 Mar 2012 09:00:29 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 22 Mar 2012 09:00:29 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Mar 22 10:00:29 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SAdsi-0001YB-Je for geh-help-gnu-emacs@m.gmane.org; Thu, 22 Mar 2012 10:00:28 +0100 Original-Received: from localhost ([::1]:37391 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SAdsh-0006vQ-Qc for geh-help-gnu-emacs@m.gmane.org; Thu, 22 Mar 2012 05:00:27 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:41783) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SAdsY-0006v5-Q1 for help-gnu-emacs@gnu.org; Thu, 22 Mar 2012 05:00:24 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SAdsO-0007hu-Vm for help-gnu-emacs@gnu.org; Thu, 22 Mar 2012 05:00:18 -0400 Original-Received: from mail-iy0-f169.google.com ([209.85.210.169]:39660) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SAdsO-0007hN-PL for help-gnu-emacs@gnu.org; Thu, 22 Mar 2012 05:00:08 -0400 Original-Received: by iajr24 with SMTP id r24so3447271iaj.0 for ; Thu, 22 Mar 2012 02:00:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; bh=JyJCWqZpChwxsa7VNBvzLRGr4fpbH1+b5rpPh0ylB3k=; b=l1Y3+2Qc/OTR4aSAMqA40w5hMc+gpmKz+nsc2W+TzoE3VOmSp64nf69JA2zu1cYQif PHUjefe3ntlDFpy8oJ9MVVJ9MK0iBAn+w7A+QOEGJzd9vYzIo+Wp/BDTF1ejrrq0Q3QZ aqklhDUuPaM2UXcCdxZ3KnSmJyVq2ycVyM0sYP19etBo0GBZkAooutkmdFhjYeOcJ+2p 5nJm2qzKs+BbYDGU9qhUcUrKx2aDVn1kXDaZvbtT7HkYeH/GzhrqVqeaLKoItjupX9Xs WhxOEKRAu8wivKvB+2DwnqmixCbycHeya048MR5HDKzLTNVJ7Kk+I3sQ2Ox7KHreKh/x kAHQ== Original-Received: by 10.50.76.163 with SMTP id l3mr928937igw.10.1332406806907; Thu, 22 Mar 2012 02:00:06 -0700 (PDT) Original-Received: by 10.231.114.214 with HTTP; Thu, 22 Mar 2012 02:00:06 -0700 (PDT) X-Google-Sender-Auth: oZNHeufFXXD5vhtl_BlxT0rJ9hw X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.210.169 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:84087 Archived-At: I applied your proposed method :-) and could quickly localize to problematic place in my init file: ;; disable echoing in ruby intrepreter (defun echo-false () (setq comint-process-echoes t)) (add-hook 'comint-mode-hook 'echo-false) This was added because the ruby interepreter was returning two times the same value. How can this piece of code be made only inf-ruby-mode specific? Thanks Matus