From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jarek Czekalski Newsgroups: gmane.emacs.devel Subject: Re: Info: Console Vs GUI difference? Date: Sun, 03 Nov 2013 20:02:46 +0100 Message-ID: <52769DD6.1040002@poczta.onet.pl> References: <83eh70as37.fsf@gnu.org> <837gcrc10q.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1383505320 23279 80.91.229.3 (3 Nov 2013 19:02:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 3 Nov 2013 19:02:00 +0000 (UTC) To: "T.V. Raman" , emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Nov 03 20:02:06 2013 Return-path: Envelope-to: ged-emacs-devel@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 1Vd2w1-0004Kw-Ts for ged-emacs-devel@m.gmane.org; Sun, 03 Nov 2013 20:02:06 +0100 Original-Received: from localhost ([::1]:46143 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vd2w1-0008Bw-Ji for ged-emacs-devel@m.gmane.org; Sun, 03 Nov 2013 14:02:05 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:58583) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vd2vt-0008Bc-V5 for emacs-devel@gnu.org; Sun, 03 Nov 2013 14:02:03 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vd2vo-0003VS-C1 for emacs-devel@gnu.org; Sun, 03 Nov 2013 14:01:57 -0500 Original-Received: from smtpo11.poczta.onet.pl ([213.180.142.142]:55363) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vd2vo-0003U3-1R for emacs-devel@gnu.org; Sun, 03 Nov 2013 14:01:52 -0500 Original-Received: from [192.168.17.5] (cj.e-siemianowice.pl [95.215.234.30]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: jarekczek@poczta.onet.pl) by smtp.poczta.onet.pl (Onet) with ESMTPSA id 3dCRMJ6tL4z9v6TW; Sun, 3 Nov 2013 20:01:48 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=poczta.onet.pl; s=2011; t=1383505309; bh=KhRyT4eehOGs25uIuPHwL0020q8q32Vtt+dpZK5jhuo=; h=Message-ID:Date:From:MIME-Version:To:Subject:References: In-Reply-To:Content-Type:Content-Transfer-Encoding; b=SJVxSzUZgUiO5Tqe4DDFVe21kXjwvCsr5PESvlEGMrix4qJA08yYk2CiVa4YrBccN JJ+zWuIvF6zwziN9Pvv15P4cekHyTX9Ucl4t1CZolP05xXO6UmZMI0+HfcYQG8O6+6 ARlpOacWNj4mrVzu5oDk8nYwLCCPHZ7v2jTZLExc= User-Agent: Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Thunderbird/24.1.0 In-Reply-To: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 213.180.142.142 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:164904 Archived-At: W dniu 11/03/2013 04:51 PM, T.V. Raman pisze: > Here is what I have for the handler: > (defun emacspeak-error-handler (data context calling-function) > "Emacspeak custom error handling function." > (tts-with-punctuations > 'all > (dtk-speak > (format "%s %s" > (error-message-string data) > (or context " "))))) > I installed this very handler with command: (setq command-error-function 'emacspeak-error-handler) It seems to work perfectly. Speaks "end-of-buffer", "arithmetic error", "buffer is read only". Echo area is all the time empty. Before installing the handler errors are accompanied with bell. Later there is no bell. Tested with Emacspeak r8509, the newest at the moment of writing this post. Jarek