[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Simplify internal_catch()
From: |
Stefan Monnier |
Subject: |
Re: Simplify internal_catch() |
Date: |
Wed, 28 Dec 2016 11:45:20 -0500 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) |
> 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