 34ba05c296
			
		
	
	34ba05c296
	
	
	
		
			
			The purpose of chainlint is to highlight problems it finds in test code by inserting annotations at the location of each problem. Arbitrarily eliding bits of the code it is checking is not helpful, yet this is exactly what chainlint.sed does by cavalierly and unnecessarily dropping the here-doc operator and tag; i.e. `cat <<TAG` becomes simply `cat` in the output. This behavior can make it more difficult for the test writer to align the annotated output of chainlint.sed with the original test code. Address this by retaining here-doc tags. Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
		
			
				
	
	
		
			6 lines
		
	
	
		
			53 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			53 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| (
 | |
| 	x=$(bobble <<-END &&
 | |
| 		wiffle) ?!AMP?!
 | |
| 	echo $x
 | |
| )
 |