Three missing implementations

Adam Lackorzynski adam at os.inf.tu-dresden.de
Sun Mar 14 22:31:47 UTC 2010


Hi,

On Thu Mar 11, 2010 at 17:52:00 +0200, Jorma Karvonen wrote:
> File src/config.c in minicom-2.3-rc1 version includes the following
> missing implementation:
> 
>   mc_wprintf(w, "%s %s\n", add_linefeed, P_ADDLINEFEED);
>   mc_wprintf(w, "%s %s\n", local_echo, P_LOCALECHO);
> 
> Fixed code:
> 
>   mc_wprintf(w, "%s %s\n", add_linefeed, _(P_ADDLINEFEED));
>   mc_wprintf(w, "%s %s\n", local_echo, _(P_LOCALECHO));
> 
> Also, file src/minicom.c includes the following missing localization:
> 
>   mc_wprintf(us, "Port %s\n", P_PORT);
> 
> Fixed code:
> 
>   mc_wprintf(us, _("Port %s\n"), P_PORT);

Thanks, applied.


Adam
-- 
Adam                 adam at os.inf.tu-dresden.de
  Lackorzynski         http://os.inf.tu-dresden.de/~adam/



More information about the minicom-devel mailing list