merge-recursive: rename diff_filespec 'one' to 'o'
authorElijah Newren <newren@gmail.com>
Fri, 5 Apr 2019 15:00:14 +0000 (08:00 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 8 Apr 2019 07:02:07 +0000 (16:02 +0900)
commite3de888ca052f7962c1a2e2f83b4640c40847ab2
tree12a57f9a7e02ffb50530980a510a785d1fbd73f0
parent259ccb6cc324912ea18b151d9c236ac17610c2f5
merge-recursive: rename diff_filespec 'one' to 'o'

In the previous commit, we noted that several places throughout merge
recursive both had a reason to use 'o'; some for a merge_options struct,
and others for a diff_filespec struct.  Some places had both, forcing
one of the two to be renamed, though the choice was inconsistent.  Now
that the merge_options struct has been renamed to 'opt' everywhere, we
can replace the few places that used 'one' for the diff_filespec to 'o'.

Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
merge-recursive.c