Re: [9fans] diff problem

2011-03-29 Thread erik quanstrom
> So I guess I must change BUF and MAXLINELEN. But shouldn't these > defines be ideally at one place?; also they have no comments... :( > Wouldn't it be nice to have the limits mentioned (automatically, say > during compilation process) in the man page? Or, would it be difficult > to get rid of any

Re: [9fans] diff problem

2011-03-29 Thread Rudolf Sykora
On 29 March 2011 18:45, erik quanstrom wrote: > your problem is that you have a line that exceeds diff's line-length limits > of 4096 characters: > > 6:  !cat /mail/fs/mbox/323/3/body.txt|awk 'length($0)>4096 {print NR " " > length($0)}' > 33 4122 > > - erik aha. thanks! But how is it? Does the

Re: [9fans] diff problem

2011-03-29 Thread erik quanstrom
your problem is that you have a line that exceeds diff's line-length limits of 4096 characters: 6: !cat /mail/fs/mbox/323/3/body.txt|awk 'length($0)>4096 {print NR " " length($0)}' 33 4122 - erik