Mercurial > emacs
comparison src/print.c @ 90776:dd7c098af727
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 638-652)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 202)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-177
author | Miles Bader <miles@gnu.org> |
---|---|
date | Mon, 26 Feb 2007 23:03:45 +0000 |
parents | 95d0cdf160ea 578d1182b478 |
children | c0409ee15cee |
comparison
equal
deleted
inserted
replaced
90775:7d8921cab8aa | 90776:dd7c098af727 |
---|---|
1290 | 1290 |
1291 /* Reset print_number_index and Vprint_number_table only when | 1291 /* Reset print_number_index and Vprint_number_table only when |
1292 the variable Vprint_continuous_numbering is nil. Otherwise, | 1292 the variable Vprint_continuous_numbering is nil. Otherwise, |
1293 the values of these variables will be kept between several | 1293 the values of these variables will be kept between several |
1294 print functions. */ | 1294 print functions. */ |
1295 if (NILP (Vprint_continuous_numbering)) | 1295 if (NILP (Vprint_continuous_numbering) |
1296 || NILP (Vprint_number_table)) | |
1296 { | 1297 { |
1297 print_number_index = 0; | 1298 print_number_index = 0; |
1298 Vprint_number_table = Qnil; | 1299 Vprint_number_table = Qnil; |
1299 } | 1300 } |
1300 | 1301 |