diff options
| author | Teodor Zlatanov | 2009-08-28 10:16:03 +0000 |
|---|---|---|
| committer | Teodor Zlatanov | 2009-08-28 10:16:03 +0000 |
| commit | 3ed8bbdc5f73fe527fdd18bbb1b5c75d28a7d895 (patch) | |
| tree | 1556e03fdb2e62d94b678cc9df25a9ea717e29c4 /src/print.c | |
| parent | 63494d1b9d7160b57231d737c24c1d0da0f8efbe (diff) | |
| download | emacs-3ed8bbdc5f73fe527fdd18bbb1b5c75d28a7d895.tar.gz emacs-3ed8bbdc5f73fe527fdd18bbb1b5c75d28a7d895.zip | |
(print_object): Set escapeflag to 1 when printing
hashtable keys and values.
Diffstat (limited to 'src/print.c')
| -rw-r--r-- | src/print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/print.c b/src/print.c index 4a990f1cabb..7f526243346 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -2100,9 +2100,9 @@ print_object (obj, printcharfun, escapeflag) | |||
| 2100 | if (!NILP (HASH_HASH (h, i))) | 2100 | if (!NILP (HASH_HASH (h, i))) |
| 2101 | { | 2101 | { |
| 2102 | if (i) PRINTCHAR (' '); | 2102 | if (i) PRINTCHAR (' '); |
| 2103 | print_object (HASH_KEY (h, i), printcharfun, 0); | 2103 | print_object (HASH_KEY (h, i), printcharfun, 1); |
| 2104 | PRINTCHAR (' '); | 2104 | PRINTCHAR (' '); |
| 2105 | print_object (HASH_VALUE (h, i), printcharfun, 0); | 2105 | print_object (HASH_VALUE (h, i), printcharfun, 1); |
| 2106 | } | 2106 | } |
| 2107 | 2107 | ||
| 2108 | if (size < real_size) | 2108 | if (size < real_size) |