Mercurial > emacs
comparison lispref/tips.texi @ 15198:fd47674bb3a7
Fix minor typo.
author | Erik Naggum <erik@naggum.no> |
---|---|
date | Thu, 09 May 1996 23:42:08 +0000 |
parents | 289506921917 |
children | 9fa09185bca0 |
comparison
equal
deleted
inserted
replaced
15197:a97349b06c2c | 15198:fd47674bb3a7 |
---|---|
246 only for program-generated buffers.) The users will find Emacs more | 246 only for program-generated buffers.) The users will find Emacs more |
247 coherent if all libraries use the same conventions. | 247 coherent if all libraries use the same conventions. |
248 | 248 |
249 @item | 249 @item |
250 Try to avoid compiler warnings about undefined free variables, by adding | 250 Try to avoid compiler warnings about undefined free variables, by adding |
251 @cdode{defvar} definitions for these variables. | 251 @code{defvar} definitions for these variables. |
252 | 252 |
253 If you bind a variable in one function, and use it or set it in another | 253 If you bind a variable in one function, and use it or set it in another |
254 function, the compiler warns about the latter function unless the | 254 function, the compiler warns about the latter function unless the |
255 variable has a definition. But often these variables have short names, | 255 variable has a definition. But often these variables have short names, |
256 and it is not clean for Lisp packages to define such variables names. | 256 and it is not clean for Lisp packages to define such variables names. |