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: [Emacs-diffs] master 55496af: * lisp/emacs-lisp/ert.el (ert--special-operator-p): Date: Thu, 30 Apr 2015 22:36:37 -0400 Message-ID: References: <20150501011901.1604.3645@vcs.savannah.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1430447825 5272 80.91.229.3 (1 May 2015 02:37:05 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 1 May 2015 02:37:05 +0000 (UTC) Cc: Glenn Morris To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri May 01 04:36:56 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Yo0ox-00062V-Qi for ged-emacs-devel@m.gmane.org; Fri, 01 May 2015 04:36:55 +0200 Original-Received: from localhost ([::1]:46545 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yo0ox-00077Z-2h for ged-emacs-devel@m.gmane.org; Thu, 30 Apr 2015 22:36:55 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:35516) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yo0ok-00073m-LC for emacs-devel@gnu.org; Thu, 30 Apr 2015 22:36:43 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Yo0og-0002Am-LW for emacs-devel@gnu.org; Thu, 30 Apr 2015 22:36:42 -0400 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.181]:4569) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yo0og-0002Ai-Hf; Thu, 30 Apr 2015 22:36:38 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgUFAGvvdVS4rw4V/2dsb2JhbAA3gVOhb4EIgXYBBVYjEAs0EhQYDapIjG0BAgECgz4DA0+DHgSjY4RY X-IPAS-Result: AgUFAGvvdVS4rw4V/2dsb2JhbAA3gVOhb4EIgXYBBVYjEAs0EhQYDapIjG0BAgECgz4DA0+DHgSjY4RY X-IronPort-AV: E=Sophos;i="5.11,557,1422939600"; d="scan'208";a="117955130" Original-Received: from 184-175-14-21.dsl.teksavvy.com (HELO fmsmemgm.homelinux.net) ([184.175.14.21]) by ironport2-out.teksavvy.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 30 Apr 2015 22:36:37 -0400 Original-Received: by fmsmemgm.homelinux.net (Postfix, from userid 20848) id 98036AE0BD; Thu, 30 Apr 2015 22:36:37 -0400 (EDT) In-Reply-To: (Glenn Morris's message of "Fri, 01 May 2015 01:19:01 +0000") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.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.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:186071 Archived-At: > - (let ((definition (indirect-function thing t))) > + (let ((definition (ignore-errors (indirect-function thing)))) Why `ignore-errors'? The Emacs-25 behavior of (indirect-function thing) is the same as the old (indirect-function thing t), AFAIK (hence the removal of the now redundant argument). Stefan