rebase -i: fix cases ignoring core.commentchar
180bad3d
(rebase -i: respect core.commentchar, 2013-02-11) updated
"rebase -i" to honor core.commentchar but missed one instance of
hard-coded '#' comment character in skip_unnecessary_picks().
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
a3bc3d070c
commit
7bca7afeff
@ -661,7 +661,7 @@ skip_unnecessary_picks () {
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
3,#*|3,)
|
3,"$comment_char"*|3,)
|
||||||
# copy comments
|
# copy comments
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
Reference in New Issue
Block a user