comparison lispref/tips.texi @ 64846:c73bec99da0b

(Coding Conventions): Minor cleanup.
author Richard M. Stallman <rms@gnu.org>
date Tue, 09 Aug 2005 12:09:36 +0000
parents 6fb026ad601f
children e836425ee789
comparison
equal deleted inserted replaced
64845:583d71cf38e2 64846:c73bec99da0b
292 Vectors are advantageous for tables that are substantial in size and are 292 Vectors are advantageous for tables that are substantial in size and are
293 accessed in random order (not searched front to back), provided there is 293 accessed in random order (not searched front to back), provided there is
294 no need to insert or delete elements (only lists allow that). 294 no need to insert or delete elements (only lists allow that).
295 295
296 @item 296 @item
297 The recommended way to print a message in the echo area is with 297 The recommended way to show a message in the echo area is with
298 the @code{message} function, not @code{princ}. @xref{The Echo Area}. 298 the @code{message} function, not @code{princ}. @xref{The Echo Area}.
299 299
300 @item 300 @item
301 When you encounter an error condition, call the function @code{error} 301 When you encounter an error condition, call the function @code{error}
302 (or @code{signal}). The function @code{error} does not return. 302 (or @code{signal}). The function @code{error} does not return.