aboutsummaryrefslogtreecommitdiffstats
path: root/lispref/objects.texi
diff options
context:
space:
mode:
authorKaroly Lorentey2003-12-28 16:05:28 +0000
committerKaroly Lorentey2003-12-28 16:05:28 +0000
commit8ed48c277afad174675b3d6dcb8e7b00a4bcc97d (patch)
tree53d9baa35f9420264e2f53ad4db850c400c3e2c6 /lispref/objects.texi
parent2e7f2ec031f1708b80df9dc1f60f6b1cb24a5c02 (diff)
parent69348b2a71cbabeb23e3b7d5dce354c5bc4bd311 (diff)
downloademacs-8ed48c277afad174675b3d6dcb8e7b00a4bcc97d.tar.gz
emacs-8ed48c277afad174675b3d6dcb8e7b00a4bcc97d.zip
Merged in changes from CVS HEAD
Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-1 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-2 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-3 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-17
Diffstat (limited to 'lispref/objects.texi')
-rw-r--r--lispref/objects.texi4
1 files changed, 3 insertions, 1 deletions
diff --git a/lispref/objects.texi b/lispref/objects.texi
index 4c905cb969e..6cb5adb72b8 100644
--- a/lispref/objects.texi
+++ b/lispref/objects.texi
@@ -42,7 +42,9 @@ it as a number; Lisp knows it is a vector, not a number.
42variable, and the type is known by the compiler but not represented in 42variable, and the type is known by the compiler but not represented in
43the data. Such type declarations do not exist in Emacs Lisp. A Lisp 43the data. Such type declarations do not exist in Emacs Lisp. A Lisp
44variable can have any type of value, and it remembers whatever value 44variable can have any type of value, and it remembers whatever value
45you store in it, type and all. 45you store in it, type and all. (Actually, a small number of Emacs
46Lisp variables can only take on values of a certain type.
47@xref{Variables with Restricted Values}.)
46 48
47 This chapter describes the purpose, printed representation, and read 49 This chapter describes the purpose, printed representation, and read
48syntax of each of the standard types in GNU Emacs Lisp. Details on how 50syntax of each of the standard types in GNU Emacs Lisp. Details on how