1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

(Coding Conventions): Fix typo.

This commit is contained in:
Thien-Thi Nguyen 2004-11-19 15:20:32 +00:00
parent 7bba6c37cf
commit 8b192981e4

View File

@ -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.