From: Thien-Thi Nguyen Date: Fri, 19 Nov 2004 15:20:32 +0000 (+0000) Subject: (Coding Conventions): Fix typo. X-Git-Tag: ttn-vms-21-2-B4~3843 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8b192981e402175a1dd46ef66330de614f86dbb4;p=emacs.git (Coding Conventions): Fix typo. --- diff --git a/lispref/tips.texi b/lispref/tips.texi index 4182260028b..8d7fd5ec5fb 100644 --- a/lispref/tips.texi +++ b/lispref/tips.texi @@ -394,7 +394,7 @@ time. Here's how to do this: 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.