From: Nick Roberts Date: Mon, 10 Jul 2006 22:53:56 +0000 (+0000) Subject: (Coding Conventions): Mention macros. X-Git-Tag: emacs-pretest-22.0.90~1567 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=947829dcbbcc309e729d06c2fb819fb78eca6f9d;p=emacs.git (Coding Conventions): Mention macros. Suggested by Ken Manheimer. --- 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 standard Emacs namespace. If your package loads @code{cl} at run time, that could cause name clashes for users who don't use that package. -However, there is no problem with using the @code{cl} package at compile -time, with @code{(eval-when-compile (require 'cl))}. +However, there is no problem with using macros from the @code{cl} +package at compile time, with @code{(eval-when-compile (require 'cl))}. @item When defining a major mode, please follow the major mode