emacs-devel
[Top][All Lists]
Advanced

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

Re: Code for converting between Elisp and Calc floats


From: David Kastrup
Subject: Re: Code for converting between Elisp and Calc floats
Date: Fri, 23 Oct 2009 15:26:51 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux)

Richard Stallman <address@hidden> writes:

> That code needs a lot more comments to explain what's happening.
> Also, would you please format the code in accord with the Emacs coding
> style?
>
>   /* voir (elisp) Writing Emacs Primitives*/
>   if(NILP(is_special))
>       {
>         double_map_ot double_map_o;
>         int exp_val = XINT(exp);
>
> should be
>
>   /* voir (elisp) Writing Emacs Primitives*/
>   if (NILP (is_special))
>     {
>       double_map_ot double_map_o;
>       int exp_val = XINT(exp);
>
>
> And why does it say "voir"?  Is that French?  Is it a typo for `void'? 
> If it is a typo for `void', I don't understand the meaning.

It's basically "See (elisp) Writing Emacs Primitives"

-- 
David Kastrup





reply via email to

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