t/chainlint.sed: drop extra spaces from regex character class
This character class, like many others in this script, matches horizontal whitespace consisting of spaces and tabs, however, a few extra, entirely harmless, spaces somehow slipped into the expression. Removing them is purely a cosmetic fix. While at it, re-indent three lines with a single TAB each which were incorrectly indented with six spaces. Also, a purely cosmetic fix. Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
							parent
							
								
									950079b7b6
								
							
						
					
					
						commit
						ace64e56c1
					
				|  | @ -71,9 +71,9 @@ | ||||||
| # incomplete line -- slurp up next line | # incomplete line -- slurp up next line | ||||||
| :squash | :squash | ||||||
| /\\$/ { | /\\$/ { | ||||||
|       N | 	N | ||||||
|       s/\\\n// | 	s/\\\n// | ||||||
|       bsquash | 	bsquash | ||||||
| } | } | ||||||
|  |  | ||||||
| # here-doc -- swallow it to avoid false hits within its body (but keep the | # here-doc -- swallow it to avoid false hits within its body (but keep the | ||||||
|  | @ -199,7 +199,7 @@ s/.*\n// | ||||||
| # "$(...)" -- command substitution; not closing ")" | # "$(...)" -- command substitution; not closing ")" | ||||||
| /\$([^)][^)]*)[^)]*$/bcheckchain | /\$([^)][^)]*)[^)]*$/bcheckchain | ||||||
| # multi-line "$(...\n...)" -- command substitution; treat as nested subshell | # multi-line "$(...\n...)" -- command substitution; treat as nested subshell | ||||||
| /\$([ 	     ]*$/bnest | /\$([ 	]*$/bnest | ||||||
| # "=(...)" -- Bash array assignment; not closing ")" | # "=(...)" -- Bash array assignment; not closing ")" | ||||||
| /=(/bcheckchain | /=(/bcheckchain | ||||||
| # closing "...) &&" | # closing "...) &&" | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	 Eric Sunshine
						Eric Sunshine