(print_object): Set escapeflag to 1 when printing
hashtable keys and values.
This commit is contained in:
parent
63494d1b9d
commit
3ed8bbdc5f
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
|
||||
|
||||
* print.c (print_object): Set escapeflag to 1 when printing
|
||||
hashtable keys and values.
|
||||
|
||||
2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* lread.c (read_integer): Use doubles (and potentially return a float
|
||||
|
|
|
@ -2100,9 +2100,9 @@ print_object (obj, printcharfun, escapeflag)
|
|||
if (!NILP (HASH_HASH (h, i)))
|
||||
{
|
||||
if (i) PRINTCHAR (' ');
|
||||
print_object (HASH_KEY (h, i), printcharfun, 0);
|
||||
print_object (HASH_KEY (h, i), printcharfun, 1);
|
||||
PRINTCHAR (' ');
|
||||
print_object (HASH_VALUE (h, i), printcharfun, 0);
|
||||
print_object (HASH_VALUE (h, i), printcharfun, 1);
|
||||
}
|
||||
|
||||
if (size < real_size)
|
||||
|
|
Loading…
Add table
Reference in a new issue