Closed laurenthuberdeau closed 5 months ago
Functions that end up not needing to call save_vars/unsave_vars had newlines in their place. This looks bad, especially for small functions because the whitespace takes as much space as the rest of the code:
save_vars
unsave_vars
_begin_string() { _string_start=$_string_pool_alloc _hash=0 }
This PR skips those empty lines so we no longer see the space reserved for save_vars/unsave_vars.
Context
Functions that end up not needing to call
save_vars
/unsave_vars
had newlines in their place. This looks bad, especially for small functions because the whitespace takes as much space as the rest of the code:This PR skips those empty lines so we no longer see the space reserved for
save_vars
/unsave_vars
.