From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: martin rudalics Newsgroups: gmane.emacs.pretest.bugs,gmane.emacs.devel Subject: Re: Contiguous redisplay of the menu and beeps Date: Mon, 28 May 2007 10:58:00 +0200 Message-ID: <465A9998.7080604@gmx.at> References: <87zm3pd6f7.fsf@stupidchicken.com> <465A93D2.3070607@gmx.at> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1180342711 27661 80.91.229.12 (28 May 2007 08:58:31 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 28 May 2007 08:58:31 +0000 (UTC) Cc: emacs-pretest-bug@gnu.org, Chong Yidong , emacs-devel@gnu.org To: martin rudalics Original-X-From: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Mon May 28 10:58:30 2007 Return-path: Envelope-to: gebp-emacs-pretest-bug@gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Hsb3d-0005gg-Hh for gebp-emacs-pretest-bug@gmane.org; Mon, 28 May 2007 10:58:29 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hsb3d-0008W9-4b for gebp-emacs-pretest-bug@gmane.org; Mon, 28 May 2007 04:58:29 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Hsb3O-0008Ti-9L for emacs-pretest-bug@gnu.org; Mon, 28 May 2007 04:58:14 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Hsb3M-0008Sm-Ej for emacs-pretest-bug@gnu.org; Mon, 28 May 2007 04:58:13 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hsb3M-0008Si-5L for emacs-pretest-bug@gnu.org; Mon, 28 May 2007 04:58:12 -0400 Original-Received: from mail.gmx.net ([213.165.64.20]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1Hsb3K-0006kt-5H for emacs-pretest-bug@gnu.org; Mon, 28 May 2007 04:58:11 -0400 Original-Received: (qmail invoked by alias); 28 May 2007 08:58:04 -0000 Original-Received: from N804P022.adsl.highway.telekom.at (EHLO [62.47.44.118]) [62.47.44.118] by mail.gmx.net (mp049) with SMTP; 28 May 2007 10:58:04 +0200 X-Authenticated: #14592706 X-Provags-ID: V01U2FsdGVkX18Nk5AgK1MN72b3Ov4V1rEHY5xaBJuCEjpnakBDab 6nEWNHhid3E+0b User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: de-DE, de, en-us, en In-Reply-To: <465A93D2.3070607@gmx.at> X-Y-GMX-Trusted: 0 X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-pretest-bug@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for CVS Emacs." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Errors-To: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.pretest.bugs:19024 gmane.emacs.devel:71880 Archived-At: >> Reports from Windows users still wanted. > > > Works here, thanks. Sorry, no. With a newline after the and moving down and back that line I get sgml-point-entered: Lisp nesting exceeds `max-lisp-eval-depth' If I define `sgml-point-entered' as (defun sgml-point-entered (x y) ;; Show preceding or following hidden tag, depending of cursor direction. (let ((inhibit-point-motion-hooks t) (tag-string (save-excursion ;; Strip properties, otherwise, the text is invisible. (buffer-substring-no-properties (point) (if (or (and (> x y) (not (eq (following-char) ?<))) (and (< x y) (eq (preceding-char) ?>))) (condition-case nil (backward-list) (error (point))) (condition-case nil (forward-list) (error (point)))))))) (unless (string-equal tag-string "") (message "Invisible tag: %s" tag-string)))) it stalls as before with 100% CPU consumption.