]> git.eshelyaron.com Git - emacs.git/commitdiff
(Coding Conventions): Clarify the tip about macros
authorRichard M. Stallman <rms@gnu.org>
Sun, 28 Jan 2007 07:20:41 +0000 (07:20 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 28 Jan 2007 07:20:41 +0000 (07:20 +0000)
that define a function or a variable.

lispref/tips.texi

index 331f0799e4b530f1fa76ac1ca911e334638b7249..5f4479a5fd3ef127facfdd7073103b67851b1e99 100644 (file)
@@ -210,7 +210,8 @@ Constructs that define a function or variable should be macros,
 not functions, and their names should start with @samp{def}.
 
 @item
-Macros that define a function or variable should take the name to be
+A macro that defines a function or variable should have a name that
+starts with @samp{define-}.  The macro should receive the name to be
 defined as the first argument.  That will help various tools find the
 definition automatically.  Avoid constructing the names in the macro
 itself, since that would confuse these tools.