Mercurial > emacs
diff doc/lispref/objects.texi @ 106637:16b0f9d4c0c5
* frames.texi (Resources): Describe inhibit-x-resources.
(Size Parameters): Copyedit.
* hash.texi (Creating Hash):
* objects.texi (Hash Table Type): Document the new hash table
printed representation.
* minibuf.texi (Basic Completion): 4th arg to all-completions is
obsolete.
* processes.texi (Process Buffers): Document
process-kill-buffer-query-function.
| author | Chong Yidong <cyd@stupidchicken.com> |
|---|---|
| date | Fri, 25 Dec 2009 20:04:07 +0000 |
| parents | bcbe3f3a3c5e |
| children | 1d1d5d9bd884 |
line wrap: on
line diff
--- a/doc/lispref/objects.texi Fri Dec 25 20:00:32 2009 +0000 +++ b/doc/lispref/objects.texi Fri Dec 25 20:04:07 2009 +0000 @@ -1219,14 +1219,18 @@ A hash table is a very fast kind of lookup table, somewhat like an alist in that it maps keys to corresponding values, but much faster. -Hash tables have no read syntax, and print using hash notation. -@xref{Hash Tables}, for functions that operate on hash tables. +The printed representation of a hash table specifies its properties +and contents, like this: @example (make-hash-table) - @result{} #<hash-table 'eql nil 0/65 0x83af980> + @result{} #s(hash-table size 65 test eql rehash-size 1.5 + rehash-threshold 0.8 data ()) @end example +@noindent +@xref{Hash Tables}, for more information about hash tables. + @node Function Type @subsection Function Type
