Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1c2b5877
Commit
1c2b5877
authored
Aug 30, 1994
by
Richard M. Stallman
Browse files
entered into RCS
parent
598fb6fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
lispref/tips.texi
lispref/tips.texi
+9
-0
No files found.
lispref/tips.texi
View file @
1c2b5877
...
...
@@ -162,6 +162,15 @@ If you just want to move point, or replace a certain string, without any
of the other features intended for interactive users, you can replace
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}.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment