diff options
| author | Nick Roberts | 2006-07-10 23:03:59 +0000 |
|---|---|---|
| committer | Nick Roberts | 2006-07-10 23:03:59 +0000 |
| commit | c876e7b757f20e8be135e3b4b0fb27784345bdbb (patch) | |
| tree | e7eb557726d0067a03301d6795d61c0412b1271b | |
| parent | 947829dcbbcc309e729d06c2fb819fb78eca6f9d (diff) | |
| download | emacs-c876e7b757f20e8be135e3b4b0fb27784345bdbb.tar.gz emacs-c876e7b757f20e8be135e3b4b0fb27784345bdbb.zip | |
Modify last change.
| -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 4a40b1dc2dd..c8cd4770113 100644 --- a/lispref/tips.texi +++ b/lispref/tips.texi | |||
| @@ -118,8 +118,9 @@ run time. Use of this package is optional, and it is not part of the | |||
| 118 | standard Emacs namespace. If your package loads @code{cl} at run time, | 118 | 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 macros from the @code{cl} | 121 | However, there is no problem with using the @code{cl} package at |
| 122 | package at compile time, with @code{(eval-when-compile (require 'cl))}. | 122 | compile time, e.g. for macros, with |
| 123 | @code{(eval-when-compile (require 'cl))}. | ||
| 123 | 124 | ||
| 124 | @item | 125 | @item |
| 125 | When defining a major mode, please follow the major mode | 126 | When defining a major mode, please follow the major mode |