aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaroly Lorentey2005-12-23 03:05:20 +0000
committerKaroly Lorentey2005-12-23 03:05:20 +0000
commit7f227e762c4aeb06e1d8fd682cae2ef516fe1336 (patch)
tree89a0faa16ea4e5f1d4bfa31a9d9499b76bf1e724
parenta712a8c33b63a0ea6775034f10a55d933c55fdeb (diff)
downloademacs-7f227e762c4aeb06e1d8fd682cae2ef516fe1336.tar.gz
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
-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)
1345 { 1345 {
1346 /* OBJ appears more than once. Let's remember that. */ 1346 /* OBJ appears more than once. Let's remember that. */
1347 PRINT_NUMBER_STATUS (Vprint_number_table, i) = Qt; 1347 PRINT_NUMBER_STATUS (Vprint_number_table, i) = Qt;
1348 print_depth--;
1348 return; 1349 return;
1349 } 1350 }
1350 1351