script: Replace the missing " " after pop

I accidentally deleted the whitespace after popping the recording
surface, thus causing the scripts to be broken.
This commit is contained in:
Chris Wilson 2010-04-28 10:01:06 +01:00
parent 6a99e83c50
commit 45d4c6e0b2

View file

@ -1008,7 +1008,7 @@ _emit_recording_surface_pattern (cairo_script_surface_t *surface,
cairo_list_del (&similar->operand.link);
assert (target_is_active (surface));
_cairo_output_stream_puts (to_context (surface)->stream, "pop");
_cairo_output_stream_puts (to_context (surface)->stream, "pop ");
cairo_surface_destroy (&similar->base);
return CAIRO_STATUS_SUCCESS;