Make diff(1) follow traditional UNIX SOP of later options nullify earlier

options that are mutually exclusive.
This commit is contained in:
David E. O'Brien 2005-06-03 06:46:56 +00:00
parent 441d901f19
commit 28832e4b79
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=146916

View File

@ -785,9 +785,6 @@ static void
specify_style (style)
enum output_style style;
{
if (output_style != OUTPUT_NORMAL
&& output_style != style)
error ("conflicting specifications of output style", 0, 0);
output_style = style;
}