Commit fe23d5ad by Richard Stallman

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

From-SVN: r5104
parent 92b37691
...@@ -6253,7 +6253,7 @@ process_init_element (value) ...@@ -6253,7 +6253,7 @@ process_init_element (value)
/* If the (lexically) previous elments are not now saved, /* If the (lexically) previous elments are not now saved,
we can discard the storage for them. */ 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 (); clear_momentary ();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment