aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Roberts2006-07-10 23:03:59 +0000
committerNick Roberts2006-07-10 23:03:59 +0000
commitc876e7b757f20e8be135e3b4b0fb27784345bdbb (patch)
treee7eb557726d0067a03301d6795d61c0412b1271b
parent947829dcbbcc309e729d06c2fb819fb78eca6f9d (diff)
downloademacs-c876e7b757f20e8be135e3b4b0fb27784345bdbb.tar.gz
emacs-c876e7b757f20e8be135e3b4b0fb27784345bdbb.zip
Modify last change.
-rw-r--r--lispref/tips.texi5
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
118standard Emacs namespace. If your package loads @code{cl} at run time, 118standard Emacs namespace. If your package loads @code{cl} at run time,
119that could cause name clashes for users who don't use that package. 119that could cause name clashes for users who don't use that package.
120 120
121However, there is no problem with using macros from the @code{cl} 121However, there is no problem with using the @code{cl} package at
122package at compile time, with @code{(eval-when-compile (require 'cl))}. 122compile time, e.g. for macros, with
123@code{(eval-when-compile (require 'cl))}.
123 124
124@item 125@item
125When defining a major mode, please follow the major mode 126When defining a major mode, please follow the major mode