diff options
| -rw-r--r-- | lispref/tips.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lispref/tips.texi b/lispref/tips.texi index 3a74aa62716..10a1ba0e09a 100644 --- a/lispref/tips.texi +++ b/lispref/tips.texi | |||
| @@ -210,7 +210,7 @@ Constructs that define a function or variable should be macros, | |||
| 210 | not functions, and their names should start with @samp{def}. | 210 | not functions, and their names should start with @samp{def}. |
| 211 | 211 | ||
| 212 | @item | 212 | @item |
| 213 | Macros that define a functions or variables should take the name to be | 213 | Macros that define a function or variable should take the name to be |
| 214 | defined as the first argument. That will help various tools find the | 214 | defined as the first argument. That will help various tools find the |
| 215 | definition automatically. Avoid constructing the names in the macro | 215 | definition automatically. Avoid constructing the names in the macro |
| 216 | itself, since that would confuse these tools. | 216 | itself, since that would confuse these tools. |