# HG changeset patch # User Thien-Thi Nguyen # Date 1100877632 0 # Node ID 7c9759696709e2b9b446ad49a6a24e67f0c0873e # Parent 9fc5198d2147dfbffc5d9f648439797ccd3003d7 (Coding Conventions): Fix typo. diff -r 9fc5198d2147 -r 7c9759696709 lispref/tips.texi --- a/lispref/tips.texi Fri Nov 19 15:14:13 2004 +0000 +++ b/lispref/tips.texi Fri Nov 19 15:20:32 2004 +0000 @@ -394,7 +394,7 @@ If you bind a variable in one function, and use it or set it in another function, the compiler warns about the latter function unless the variable has a definition. But adding a definition would be -unclean if the variable has a short names, since Lisp packages should +unclean if the variable has a short name, since Lisp packages should not define short variable names. The right thing to do is to rename this variable to start with the name prefix used for the other functions and variables in your package.