case LS_MULTI_COL:
/* This is for the `dir' program. */
format = many_per_line;
- set_quoting_style ("earg_quoting_options, escape_quoting_style);
+ set_quoting_style (NULL, escape_quoting_style);
break;
case LS_LONG_FORMAT:
/* This is for the `vdir' program. */
format = long_format;
- set_quoting_style ("earg_quoting_options, escape_quoting_style);
+ set_quoting_style (NULL, escape_quoting_style);
break;
case LS_LS:
if ((p = getenv ("QUOTING_STYLE"))
&& 0 <= (i = argmatch (p, quoting_style_args)))
- set_quoting_style ("earg_quoting_options, (enum quoting_style) i);
+ set_quoting_style (NULL, (enum quoting_style) i);
if ((p = getenv ("BLOCKSIZE"))
&& strncmp (p, "HUMAN", sizeof ("HUMAN") - 1) == 0)
break;
case 'b':
- set_quoting_style ("earg_quoting_options, escape_quoting_style);
+ set_quoting_style (NULL, escape_quoting_style);
break;
case 'c':
break;
case 'N':
- set_quoting_style ("earg_quoting_options, literal_quoting_style);
+ set_quoting_style (NULL, literal_quoting_style);
break;
case 'Q':
- set_quoting_style ("earg_quoting_options, c_quoting_style);
+ set_quoting_style (NULL, c_quoting_style);
break;
case 'R':
invalid_arg (_("quoting style"), optarg, i);
usage (EXIT_FAILURE);
}
- set_quoting_style ("earg_quoting_options,
- (enum quoting_style) i);
+ set_quoting_style (NULL, (enum quoting_style) i);
break;
case 16:
if (human_readable_base)
output_units = 1;
- filename_quoting_options = clone_quoting_options ("earg_quoting_options);
+ filename_quoting_options = clone_quoting_options (NULL);
if (indicator_style != none)
for (p = "*=@|" + (int) indicator_style - 1; *p; p++)
set_char_quoting (filename_quoting_options, *p, 1);
- dirname_quoting_options = clone_quoting_options ("earg_quoting_options);
+ dirname_quoting_options = clone_quoting_options (NULL);
set_char_quoting (dirname_quoting_options, ':', 1);
return optind;