emacs-devel
[Top][All Lists]
Advanced

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

Re: Patch: Syntax and Hard Newlines


From: Richard Stallman
Subject: Re: Patch: Syntax and Hard Newlines
Date: Mon, 13 Nov 2006 15:15:49 -0500

    +  skip_soft_newlines = !NILP (Fsymbol_value
    +                              (intern
    +                               ("use-hard-newlines")));
    +

It would look nicer to break the line like this:

    +  skip_soft_newlines
    +    = !NILP (Fsymbol_value (intern ("use-hard-newlines")));
    +

However, if C code is going to examine the value of that variable 
frequently, it would be more efficient to make it a C-level
variable defined with DEFVAR_PER_BUFFER in buffer.c.




reply via email to

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