diff options
| -rw-r--r-- | lispref/tips.texi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lispref/tips.texi b/lispref/tips.texi index c8cd4770113..4dc24196272 100644 --- a/lispref/tips.texi +++ b/lispref/tips.texi | |||
| @@ -119,8 +119,9 @@ standard Emacs namespace. If your package loads @code{cl} at run time, | |||
| 119 | that could cause name clashes for users who don't use that package. | 119 | that could cause name clashes for users who don't use that package. |
| 120 | 120 | ||
| 121 | However, there is no problem with using the @code{cl} package at | 121 | However, there is no problem with using the @code{cl} package at |
| 122 | compile time, e.g. for macros, with | 122 | compile time, with @code{(eval-when-compile (require 'cl))}. That's |
| 123 | @code{(eval-when-compile (require 'cl))}. | 123 | sufficient for using the macros in the @code{cl} package, because the |
| 124 | compiler expands them before generating the byte-code. | ||
| 124 | 125 | ||
| 125 | @item | 126 | @item |
| 126 | When defining a major mode, please follow the major mode | 127 | When defining a major mode, please follow the major mode |