From: Arch Librarian Date: Mon, 20 Sep 2004 17:00:13 +0000 (+0000) Subject: Remove \r escape sequence for the sake of gettext X-Git-Tag: 0.7.24ubuntu1~844 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/82c6b98d543274b6fd68dbb141392b4ffeaa3142 Remove \r escape sequence for the sake of gettext Author: jgg Date: 2003-01-11 07:17:04 GMT Remove \r escape sequence for the sake of gettext --- diff --git a/apt-pkg/contrib/progress.cc b/apt-pkg/contrib/progress.cc index ab81e0643..8eb36fc20 100644 --- a/apt-pkg/contrib/progress.cc +++ b/apt-pkg/contrib/progress.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: progress.cc,v 1.11 2001/05/07 05:25:13 jgg Exp $ +// $Id: progress.cc,v 1.12 2003/01/11 07:17:04 jgg Exp $ /* ###################################################################### OpProgress - Operation Progress @@ -151,9 +151,9 @@ void OpTextProgress::Done() { char S[300]; if (_error->PendingError() == true) - snprintf(S,sizeof(S),_("\r%s... Error!"),OldOp.c_str()); + snprintf(S,sizeof(S),_("%c%s... Error!"),'\r',OldOp.c_str()); else - snprintf(S,sizeof(S),_("\r%s... Done"),OldOp.c_str()); + snprintf(S,sizeof(S),_("%c%s... Done"),'\r',OldOp.c_str()); Write(S); cout << endl; OldOp = string();