emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] Add prettify symbols to python-mode


From: Paul Eggert
Subject: Re: [PATCH] Add prettify symbols to python-mode
Date: Wed, 23 Sep 2015 12:38:55 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0

On 09/23/2015 10:58 AM, David Kastrup wrote:
Lisp_Object x[2];
x[0] = a;
x[1] = b;
return Fplus (2, x);

does not resemble either a+b or (+ a b).

Sure, but that's not using the C macros properly.  Better is this:

   return CALLN (Fplus, a, b);

which is not so far from (+ a b).



reply via email to

[Prev in Thread] Current Thread [Next in Thread]