From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: function-called-at-point: ignore-errors around find-tag-default Date: Thu, 17 Feb 2005 18:09:09 -0500 Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1108684184 17089 80.91.229.2 (17 Feb 2005 23:49:44 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 17 Feb 2005 23:49:44 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Feb 18 00:49:43 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1D1vOs-0007yU-L3 for ged-emacs-devel@m.gmane.org; Fri, 18 Feb 2005 00:49:38 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D1vf5-0008M3-Rh for ged-emacs-devel@m.gmane.org; Thu, 17 Feb 2005 19:06:24 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1D1vVv-00052Y-4E for emacs-devel@gnu.org; Thu, 17 Feb 2005 18:56:55 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1D1vV7-0004n6-5m for emacs-devel@gnu.org; Thu, 17 Feb 2005 18:56:05 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D1vUr-0004NO-At for emacs-devel@gnu.org; Thu, 17 Feb 2005 18:55:49 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1D1uq4-0003Xv-AA for emacs-devel@gnu.org; Thu, 17 Feb 2005 18:13:40 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1D1ulh-00048D-Qo; Thu, 17 Feb 2005 18:09:09 -0500 Original-To: quarl+dated+1109044350.69077d@nospam.quarl.org In-reply-to: (message from Karl Chen on Wed, 16 Feb 2005 19:56:00 -0800) 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 X-MailScanner-To: ged-emacs-devel@m.gmane.org Xref: main.gmane.org gmane.emacs.devel:33595 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:33595 I already debugged it as in my other post in this thread: (forward-sexp -1) errors when it is in the middle of a sexp. Since `forward-sexp' calls a user-defined function which can behave unpredictably, I think the best thing is to wrap something (i.e. `find-tag-default' or all its callers) in condition-case. Ok, now that I see the precise problem, I agree with you.