# HG changeset patch # User Richard M. Stallman # Date 778275173 0 # Node ID 62d1138d10de8aea87d0c658fcf066b3caca0650 # Parent 011660f7aae9725fd1a96ca6bed528ea46fae75b entered into RCS diff -r 011660f7aae9 -r 62d1138d10de lispref/tips.texi --- a/lispref/tips.texi Tue Aug 30 07:20:23 1994 +0000 +++ b/lispref/tips.texi Tue Aug 30 19:32:53 1994 +0000 @@ -163,6 +163,15 @@ these functions with one or two lines of simple Lisp code. @item +Use lists rather than vectors, except when there is a particular reason +to use a vector. Lisp has more facilities for manipulating lists than +for vectors, and working with lists is usually more convenient. + +Vectors are advantageous for tables that are substantial in size and are +accessed in random order (not searched front to back), provided there is +no need to insert or delete elements (only lists allow that). + +@item The recommended way to print a message in the echo area is with the @code{message} function, not @code{princ}. @xref{The Echo Area}.