We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cf5d5c commit e7531e8Copy full SHA for e7531e8
1 file changed
src/uu/pr/src/pr.rs
@@ -779,15 +779,11 @@ fn build_options(
779
780
let column_option_value = match parse_usize(matches, options::COLUMN) {
781
Some(Ok(0)) => {
782
- // if --column is zero, exit with code 1.
783
return Err(PrError::EncounteredErrors {
784
msg: "invalid -column argument '0'".to_string(),
785
});
786
}
787
- Some(res) => {
788
- println!("{:?}", res);
789
- Some(res?)
790
- }
+ Some(res) => Some(res?),
791
None => start_column_option,
792
};
793
0 commit comments