(process_init_element): Don't call clear_momentary if value is 0.

From-SVN: r5104
This commit is contained in:
Richard Stallman 1993-08-08 02:27:07 +00:00
parent 92b376919d
commit fe23d5ada2
1 changed files with 1 additions and 1 deletions

View File

@ -6253,7 +6253,7 @@ process_init_element (value)
/* If the (lexically) previous elments are not now saved,
we can discard the storage for them. */
if (constructor_incremental && constructor_pending_elts == 0)
if (constructor_incremental && constructor_pending_elts == 0 && value != 0)
clear_momentary ();
}