From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Sergei" Newsgroups: gmane.emacs.help Subject: Re: matching parenthesis Date: 25 Jul 2005 20:41:10 -0700 Organization: http://groups.google.com Message-ID: <1122349270.911687.197950@z14g2000cwz.googlegroups.com> References: <1122282552.326737.301880@z14g2000cwz.googlegroups.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1122349405 4329 80.91.229.2 (26 Jul 2005 03:43:25 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 26 Jul 2005 03:43:25 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Jul 26 05:43:16 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DxGLU-0008Cp-1o for geh-help-gnu-emacs@m.gmane.org; Tue, 26 Jul 2005 05:43:08 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DxGNo-0008Vw-6R for geh-help-gnu-emacs@m.gmane.org; Mon, 25 Jul 2005 23:45:32 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!z14g2000cwz.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 27 Original-NNTP-Posting-Host: 192.55.52.3 Original-X-Trace: posting.google.com 1122349276 5520 127.0.0.1 (26 Jul 2005 03:41:16 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Tue, 26 Jul 2005 03:41:16 +0000 (UTC) In-Reply-To: User-Agent: G2/0.2 Complaints-To: groups-abuse@google.com Injection-Info: z14g2000cwz.googlegroups.com; posting-host=192.55.52.3; posting-account=iSrvCw0AAACmDq0mlo5d6a2lfxRMcrI2 Original-Xref: shelby.stanford.edu gnu.emacs.help:132668 Original-To: help-gnu-emacs@gnu.org 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: news.gmane.org gmane.emacs.help:28190 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:28190 Yes, this seems to work. Thank you. Johan Bockg=E5rd: > "Sergei" writes: > > > I do not know, if this is a known issue, but I had to comment out > > ;(require 'mic-paren) (paren-activate) from my .emacs, because it > > blocks calc, making it report on every input: > > > > ,---- > > | byte-code: Key sequence C-M-f uses invalid prefix characters > > `---- > > I can't seem to reproduce this now, but I have used this workaround: > > (defadvice calcDigit-start (around mic-paren activate) > (let ((minibuffer-setup-hook (remq 'mic-paren-minibuffer-setup-hook > minibuffer-setup-hook)) > (minibuffer-exit-hook (remq 'mic-paren-minibuffer-exit-hook > minibuffer-exit-hook))) > ad-do-it)) >=20 >=20 > --=20 > Johan Bockg=E5rd