diff options
author | Karoly Lorentey <lorentey@elte.hu> | 2005-12-23 03:05:20 +0000 |
---|---|---|
committer | Karoly Lorentey <lorentey@elte.hu> | 2005-12-23 03:05:20 +0000 |
commit | 7f227e762c4aeb06e1d8fd682cae2ef516fe1336 (patch) | |
tree | 89a0faa16ea4e5f1d4bfa31a9d9499b76bf1e724 /src/print.c | |
parent | a712a8c33b63a0ea6775034f10a55d933c55fdeb (diff) | |
download | emacs-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.c | 1 |
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; } |