diff options
| author | Chong Yidong | 2008-08-20 14:19:18 +0000 |
|---|---|---|
| committer | Chong Yidong | 2008-08-20 14:19:18 +0000 |
| commit | 9a06b3517160748f246c2caa2adfc76d345610a2 (patch) | |
| tree | 73e25345c80a13830b4a3f7700c1d7413f43b735 /src | |
| parent | ff7eaa8329c09945887f1b228c0ebeb6ffde6afe (diff) | |
| download | emacs-9a06b3517160748f246c2caa2adfc76d345610a2.tar.gz emacs-9a06b3517160748f246c2caa2adfc76d345610a2.zip | |
(print_object): Fix off-by-one in last change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c index a474fa31e81..ea92527d083 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -1488,7 +1488,7 @@ print_object (obj, printcharfun, escapeflag) | |||
| 1488 | QUIT; | 1488 | QUIT; |
| 1489 | 1489 | ||
| 1490 | /* See similar code in print_preprocess. */ | 1490 | /* See similar code in print_preprocess. */ |
| 1491 | if (print_depth > PRINT_CIRCLE) | 1491 | if (print_depth >= PRINT_CIRCLE) |
| 1492 | error ("Apparently circular structure being printed"); | 1492 | error ("Apparently circular structure being printed"); |
| 1493 | 1493 | ||
| 1494 | /* Detect circularities and truncate them. */ | 1494 | /* Detect circularities and truncate them. */ |