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
3ed8bbdc
Commit
3ed8bbdc
authored
Aug 28, 2009
by
Ted Zlatanov
Browse files
(print_object): Set escapeflag to 1 when printing
hashtable keys and values.
parent
63494d1b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/ChangeLog
src/ChangeLog
+5
-0
src/print.c
src/print.c
+2
-2
No files found.
src/ChangeLog
View file @
3ed8bbdc
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
...
...
src/print.c
View file @
3ed8bbdc
...
...
@@ -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
)
...
...
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