RobG said:
It does matter as file sizes are relative - double the size of your
script file and likely it will be double when zipped also.
gzip would not be used much if that were the case.
The probability that the resulting (compressed) file is smaller than two
times the size of the original (uncompressed) file is greater than the
opposite case, because redundancy tends to be greater the more data is
accumulated. The DEFLATE algorithm of gzip is a combination of LZ77 and
Huffman coding, the latter providing one of the strongest lossless
compressions possible.
As a side note, that is one reason I mentioned before why it would be a Good
Thing to write element and attribute names, and even attribute values when
it does not make a difference, in lowercase. The probability of a lowercase
character in written language is already higher than the probability of an
uppercase character (and so the overall redundancy of the former is
greater), and this measure takes advantage of that.
However, a few extra characters here and there for the sake of legibility
aren't likely to matter.
ACK
PointedEars