From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: Simplify internal_catch() Date: Wed, 28 Dec 2016 11:45:20 -0500 Message-ID: References: <87bmvwlfzo.fsf@gmail.com> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1482943547 17635 195.159.176.226 (28 Dec 2016 16:45:47 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Wed, 28 Dec 2016 16:45:47 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) Cc: emacs-devel@gnu.org To: Chris Gregory Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Dec 28 17:45:44 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cMHMB-0003gL-LT for ged-emacs-devel@m.gmane.org; Wed, 28 Dec 2016 17:45:39 +0100 Original-Received: from localhost ([::1]:59996 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cMHMG-0004XX-Jj for ged-emacs-devel@m.gmane.org; Wed, 28 Dec 2016 11:45:44 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:49311) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cMHLy-0004P9-N4 for emacs-devel@gnu.org; Wed, 28 Dec 2016 11:45:27 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cMHLv-00030E-NE for emacs-devel@gnu.org; Wed, 28 Dec 2016 11:45:26 -0500 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.181]:46788) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cMHLv-0002zk-HU for emacs-devel@gnu.org; Wed, 28 Dec 2016 11:45:23 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A0AOKQAu3EVY/+UVNJ1dGgEBAQECAQEBAQgBAQEBgzgBAQEBAR+EW4VUnAImAZRWggiGGQMEAgKCEUISAQIBAQEBAQEBYiiEaQEEAVYjBQsLDiYSFBgNJIh6CK0Ui0QBAQgCJYsZiikFj3yKapJzAYgmhjpJkUYmDCR4Ew6DXByBeyCJLQEBAQ X-IPAS-Result: A0AOKQAu3EVY/+UVNJ1dGgEBAQECAQEBAQgBAQEBgzgBAQEBAR+EW4VUnAImAZRWggiGGQMEAgKCEUISAQIBAQEBAQEBYiiEaQEEAVYjBQsLDiYSFBgNJIh6CK0Ui0QBAQgCJYsZiikFj3yKapJzAYgmhjpJkUYmDCR4Ew6DXByBeyCJLQEBAQ X-IronPort-AV: E=Sophos;i="5.33,749,1477972800"; d="scan'208";a="284374372" Original-Received: from 157-52-21-229.cpe.teksavvy.com (HELO pastel.home) ([157.52.21.229]) by smtp.teksavvy.com with ESMTP; 28 Dec 2016 11:45:20 -0500 Original-Received: by pastel.home (Postfix, from userid 20848) id 4512B64CE8; Wed, 28 Dec 2016 11:45:20 -0500 (EST) In-Reply-To: <87bmvwlfzo.fsf@gmail.com> (Chris Gregory's message of "Wed, 28 Dec 2016 00:33:47 -0600") 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.21 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" Xref: news.gmane.org gmane.emacs.devel:210900 Archived-At: > I'm unsure as to the style desired for Emacs source code. I've seen > both used in it. There's a fair bit of Lisp_Object foo; foo = ...; around, indeed, because at some point in the past, some C compilers did not support "Lisp_Object foo = ..." when Lisp_Object is a union type. These issues are long gone, but the code remains ;-) Stefan