This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: [patch] expr.c: Fix formatting.



> Well, IMHO, the whole point is to make variable names stand up in
> comments.

No, the whole point is to be able to tell the difference between a
reference to a variable, and a reference to what the variable's value
represents.

Consider this example:

  /* When passing a buffer, if count is non-zero, then at most COUNT
     bytes will be transferred. */

If *I* wanted to make the variable stand out, *I* would do this:

  /* When passing a buffer, if `count' is non-zero, then at most COUNT
     bytes will be transferred. */

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]