diff options
| author | Nick Roberts | 2006-07-10 22:53:56 +0000 |
|---|---|---|
| committer | Nick Roberts | 2006-07-10 22:53:56 +0000 |
| commit | 947829dcbbcc309e729d06c2fb819fb78eca6f9d (patch) | |
| tree | 53855a06af1d66bac698276a314582d6329112a6 | |
| parent | ff3d895e9cceb4a8e36989d4a616e0685a4e2961 (diff) | |
| download | emacs-947829dcbbcc309e729d06c2fb819fb78eca6f9d.tar.gz emacs-947829dcbbcc309e729d06c2fb819fb78eca6f9d.zip | |
(Coding Conventions): Mention macros.
Suggested by Ken Manheimer.
| -rw-r--r-- | lispref/tips.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/tips.texi b/lispref/tips.texi index 0110ef307b1..4a40b1dc2dd 100644 --- a/lispref/tips.texi +++ b/lispref/tips.texi | |||
| @@ -118,8 +118,8 @@ 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 the @code{cl} package at compile | 121 | However, there is no problem with using macros from the @code{cl} |
| 122 | time, with @code{(eval-when-compile (require 'cl))}. | 122 | package at compile time, with @code{(eval-when-compile (require 'cl))}. |
| 123 | 123 | ||
| 124 | @item | 124 | @item |
| 125 | When defining a major mode, please follow the major mode | 125 | When defining a major mode, please follow the major mode |