On Saturday 16 May 2020 03:52:39 CEST, Cameron Simpson wrote:
Not if the target language grammar does not order the words the same way.
To a first approximation, only one kind of gluing works, namely "%s: %s",
as in this example:
Error opening file: File does not exist
Everything else brea
On 11May2020 18:56, derek martin wrote:
On Fri, May 08, 2020 at 06:59:18AM +0200, Petr Pisar wrote:
> dprint (1, (debugfile, "WEED is %sSet\n", (flags & CH_WEED) ? "" :
> "Not "));
The message probably does not get translated, but from point of view of
localization, please do not glue sentenc
On Mon, May 11, 2020 at 06:56:05PM -0500, Derek Martin wrote:
> On Fri, May 08, 2020 at 06:59:18AM +0200, Petr Pisar wrote:
> > On Fri, May 08, 2020 at 06:42:57AM +0200, Claus Assmann wrote:
> > > On Thu, May 07, 2020, Remco Rijnders wrote:
> > >
> > > > - dprint (1, (debugfile, "WEED is %s\n", (
On Fri, May 08, 2020 at 06:59:18AM +0200, Petr Pisar wrote:
> On Fri, May 08, 2020 at 06:42:57AM +0200, Claus Assmann wrote:
> > On Thu, May 07, 2020, Remco Rijnders wrote:
> >
> > > - dprint (1, (debugfile, "WEED is %s\n", (flags & CH_WEED) ? "Set" :
> > > "Not"));
> > > + dprint (1, (debugfil
On Fri, May 08, 2020 at 06:42:57AM +0200, Claus wrote in
<20200508044257.ga20...@kiel.esmtp.org>:
On Thu, May 07, 2020, Remco Rijnders wrote:
- dprint (1, (debugfile, "WEED is %s\n", (flags & CH_WEED) ? "Set" : "Not"));
+ dprint (1, (debugfile, "WEED is %s\n", (flags & CH_WEED) ? "Set" : "Not
On Fri, May 08, 2020 at 06:42:57AM +0200, Claus Assmann wrote:
> On Thu, May 07, 2020, Remco Rijnders wrote:
>
> > - dprint (1, (debugfile, "WEED is %s\n", (flags & CH_WEED) ? "Set" :
> > "Not"));
> > + dprint (1, (debugfile, "WEED is %s\n", (flags & CH_WEED) ? "Set" : "Not
> > Set"));
>
> Sa
On Thu, May 07, 2020, Remco Rijnders wrote:
> - dprint (1, (debugfile, "WEED is %s\n", (flags & CH_WEED) ? "Set" : "Not"));
> + dprint (1, (debugfile, "WEED is %s\n", (flags & CH_WEED) ? "Set" : "Not
> Set"));
Save some bytes:-)
dprint (1, (debugfile, "WEED is %sSet\n", (flags & CH_WEED) ? ""
On Thu, May 07, 2020 at 07:17:42PM -0400, Remco Rijnders wrote:
---
copy.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Committed. Thank you.
--
Kevin J. McCarthy
GPG Fingerprint: 8975 A9B3 3AA3 7910 385C 5308 ADEF 7684 8031 6BDA
signature.asc
Description: PGP signature
---
copy.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/copy.c b/copy.c
index 5e84b717..b6c9d781 100644
--- a/copy.c
+++ b/copy.c
@@ -141,7 +141,7 @@ mutt_copy_hdr (FILE *in, FILE *out, LOFF_T off_start,
LOFF_T off_end, int flags,
}
}
- dprint (1, (debugfile, "WE