summaryrefslogtreecommitdiff
path: root/src/print.c
diff options
context:
space:
mode:
authorKaroly Lorentey <lorentey@elte.hu>2005-12-23 03:05:20 +0000
committerKaroly Lorentey <lorentey@elte.hu>2005-12-23 03:05:20 +0000
commit7f227e762c4aeb06e1d8fd682cae2ef516fe1336 (patch)
tree89a0faa16ea4e5f1d4bfa31a9d9499b76bf1e724 /src/print.c
parenta712a8c33b63a0ea6775034f10a55d933c55fdeb (diff)
downloademacs-7f227e762c4aeb06e1d8fd682cae2ef516fe1336.tar.gz
emacs-7f227e762c4aeb06e1d8fd682cae2ef516fe1336.tar.bz2
emacs-7f227e762c4aeb06e1d8fd682cae2ef516fe1336.zip
Pull a bugfix from CVS to prevent problems with the Debian semantic package.
* src/print.c (print_preprocess): Don't loose print_depth levels while iterating. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-458
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/print.c b/src/print.c
index 3a1fe336b56..e8fcd2b6a45 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1345,6 +1345,7 @@ print_preprocess (obj)
{
/* OBJ appears more than once. Let's remember that. */
PRINT_NUMBER_STATUS (Vprint_number_table, i) = Qt;
+ print_depth--;
return;
}