Eric Sunshine <sunshine@xxxxxxxxxxxxxx> writes: > Every other example in the shell-script section of this document is > written like this: > > (incorrect) > local variable=$value > local variable=$(command args) > > (correct) > local variable="$value" > local variable="$(command args)" > > Should this patch follow suit for consistency? Sure. That sounds like a good idea.