Revision 2496da42118087e6766964c7a7b94f45daf372f4 authored by Junio C Hamano on 19 September 2020, 00:58:00 UTC, committed by Junio C Hamano on 19 September 2020, 00:58:00 UTC
A follow-up fix to a topic already in 'master'.

* rs/parallel-read-cache-fix:
  read-cache: fix mem-pool allocation for multi-threaded index loading
2 parent s 21de7e9 + bcd2c5e
Raw File
inline-comment.test
(
# LINT: swallow inline comment (leaving command intact)
	foobar && # comment 1
# LINT: mispositioned "&&" (correctly) swallowed with comment
	barfoo # wrong position for &&
# LINT: "#" in string not misinterpreted as comment
	flibble "not a # comment"
) &&

# LINT: "#" in string in cuddled subshell not misinterpreted as comment
(cd foo &&
	flibble "not a # comment")
back to top