From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: ERC tracking broken Date: Tue, 29 Mar 2011 20:56:42 -0400 Message-ID: References: <8739m54zz7.fsf@gmail.com> <87y63xoa56.fsf@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1301447329 4016 80.91.229.12 (30 Mar 2011 01:08:49 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 30 Mar 2011 01:08:49 +0000 (UTC) Cc: emacs-devel@gnu.org To: Antoine Levitt Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Mar 30 03:08:45 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Q4jsV-0000t0-6D for ged-emacs-devel@m.gmane.org; Wed, 30 Mar 2011 03:08:45 +0200 Original-Received: from localhost ([127.0.0.1]:48587 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q4jjK-0002zt-Pr for ged-emacs-devel@m.gmane.org; Tue, 29 Mar 2011 20:57:50 -0400 Original-Received: from [140.186.70.92] (port=55852 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q4jj0-0001w1-CN for emacs-devel@gnu.org; Tue, 29 Mar 2011 20:57:44 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q4jiG-0000EZ-D2 for emacs-devel@gnu.org; Tue, 29 Mar 2011 20:56:45 -0400 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.181]:54580 helo=ironport2-out.pppoe.ca) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q4jiG-0000EM-7V for emacs-devel@gnu.org; Tue, 29 Mar 2011 20:56:44 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AvsEAFF+kk1FpZRw/2dsb2JhbAClUHiIebZBhWoElhQ X-IronPort-AV: E=Sophos;i="4.63,266,1299474000"; d="scan'208";a="98594524" Original-Received: from 69-165-148-112.dsl.teksavvy.com (HELO ceviche.home) ([69.165.148.112]) by ironport2-out.pppoe.ca with ESMTP/TLS/ADH-AES256-SHA; 29 Mar 2011 20:56:42 -0400 Original-Received: by ceviche.home (Postfix, from userid 20848) id 8D31B660C7; Tue, 29 Mar 2011 20:56:42 -0400 (EDT) In-Reply-To: <87y63xoa56.fsf@gmail.com> (Antoine Levitt's message of "Wed, 30 Mar 2011 00:05:25 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 206.248.154.181 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:137883 Archived-At: > Alright, I finally traced it back to something not ERC-related. The > easiest way I could reproduce it is with some code to highlight > parentheses. So here's a simple recipe: > - Get http://pastebin.com/UafFZ9qy and put it in your load path (I got > this code from emacswiki some time ago, it worked fine until today - > which doesn't mean it's correct, maybe your changes simply exposed a > bug in it) > - Put > (require 'highlight-parentheses) > (global-highlight-parentheses-mode t) > (ido-mode 1) > (icomplete-mode 1) > in a blank .emacs > - M-x a, observe there's a nice completion list > - C-g to get out of the completion > - M-x a, observe the completion list has disappeared (for the rest > of the session) I did: % trunk/src/emacs -Q -l /.../highlight-parentheses.el \ -f global-highlight-parentheses-mode \ -f ido-mode \ -f icomplete-mode M-x a, observe the completion list C-g to get out of M-x M-x a and I observed the completion list again. I.e. I can't reproduce it here :-( Stefan PS: Why use ido and icomplete? Doesn't ido already do what icomplete does?