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: Recent change to file-chase-links has a bug Date: Thu, 10 Apr 2003 02:22:01 -0400 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: <200304090710.QAA15874@etlken.m17n.org> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1049955834 8407 80.91.224.249 (10 Apr 2003 06:23:54 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 10 Apr 2003 06:23:54 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Thu Apr 10 08:23:52 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 193VTU-0002BP-00 for ; Thu, 10 Apr 2003 08:23:52 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 193VYL-0003wi-00 for ; Thu, 10 Apr 2003 08:28:53 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 193VSC-0003Wj-03 for emacs-devel@quimby.gnus.org; Thu, 10 Apr 2003 02:22:32 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 193VRo-0003Sa-00 for emacs-devel@gnu.org; Thu, 10 Apr 2003 02:22:08 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 193VRn-0003SO-00 for emacs-devel@gnu.org; Thu, 10 Apr 2003 02:22:07 -0400 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 193VRi-0003H1-00 for emacs-devel@gnu.org; Thu, 10 Apr 2003 02:22:02 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.10) id 193VRh-0003Ko-00; Thu, 10 Apr 2003 02:22:01 -0400 Original-To: Kenichi Handa In-reply-to: <200304090710.QAA15874@etlken.m17n.org> (message from Kenichi Handa on Wed, 9 Apr 2003 16:10:47 +0900 (JST)) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:13100 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:13100 At least, (max limit 100) must be: (max (if (numberp limit) limit 0) 100) Otherwise, for instance, C-x 4 a signals an error. Thanks. I fixed this. And, if the docstring is correct, actually the code must be something like this: That change would make limits greater than 100 not work.