comparison lispref/tips.texi @ 58323:7c9759696709

(Coding Conventions): Fix typo.
author Thien-Thi Nguyen <ttn@gnuvola.org>
date Fri, 19 Nov 2004 15:20:32 +0000
parents b6f9481dcccd
children a0cca815ceaa f2ebccfa87d4
comparison
equal deleted inserted replaced
58322:9fc5198d2147 58323:7c9759696709
392 392
393 @item 393 @item
394 If you bind a variable in one function, and use it or set it in 394 If you bind a variable in one function, and use it or set it in
395 another function, the compiler warns about the latter function unless 395 another function, the compiler warns about the latter function unless
396 the variable has a definition. But adding a definition would be 396 the variable has a definition. But adding a definition would be
397 unclean if the variable has a short names, since Lisp packages should 397 unclean if the variable has a short name, since Lisp packages should
398 not define short variable names. The right thing to do is to rename 398 not define short variable names. The right thing to do is to rename
399 this variable to start with the name prefix used for the other 399 this variable to start with the name prefix used for the other
400 functions and variables in your package. 400 functions and variables in your package.
401 401
402 @item 402 @item