# HG changeset patch # User Nick Roberts # Date 1152572036 0 # Node ID 068befac60e5eb4f8981a72ea3ce87868d5a6f85 # Parent c9706eb851938a6344e6d6424f81b6ba7f8351e6 (Coding Conventions): Mention macros. Suggested by Ken Manheimer. diff -r c9706eb85193 -r 068befac60e5 lispref/tips.texi --- a/lispref/tips.texi Mon Jul 10 22:53:06 2006 +0000 +++ b/lispref/tips.texi Mon Jul 10 22:53:56 2006 +0000 @@ -118,8 +118,8 @@ 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