comparison lispref/tips.texi @ 54042:ff694e194b01

(Coding Conventions): Minor fix.
author Richard M. Stallman <rms@gnu.org>
date Tue, 17 Feb 2004 01:12:57 +0000
parents ed40e77a5176
children 17dfaa4af669
comparison
equal deleted inserted replaced
54041:bb6e41200945 54042:ff694e194b01
249 say which functions are replaced, and how the behavior of the 249 say which functions are replaced, and how the behavior of the
250 replacements differs from that of the originals. 250 replacements differs from that of the originals.
251 251
252 @item 252 @item
253 Avoid using macros that define functions and variables with names that 253 Avoid using macros that define functions and variables with names that
254 are constructed. It is best for maintenance wen the name of the 254 are constructed. It is best for maintenance when the name of the
255 function or variable being defined is given explicitly in the source 255 function or variable being defined is given explicitly in the source
256 code, as the second element of the list---as it is when you use 256 code, as the second element of the list---as it is when you use
257 @code{defun}, @code{defalias}, @code{defvar} and @code{defopt}. 257 @code{defun}, @code{defalias}, @code{defvar} and @code{defopt}.
258 258
259 @item 259 @item