Vasco Almeida <vascomalmeida@xxxxxxx> writes: > if (!defined $bottom) { > - error_msg "Huh ($choice)?\n"; > + error_msg sprintf(__("Huh (%s)?\n"), $choice); > next TOPLOOP; > } > } > if ($opts->{SINGLETON} && $bottom != $top) { > - error_msg "Huh ($choice)?\n"; > + error_msg sprintf(__("Huh (%s)?"), $choice); > next TOPLOOP; Doesn't this want "\n" just like the other one in this hunk?