[Lynx-dev] shell stuff

2024-01-21 Thread Thorsten Glaser
Hi, while scrolling through a diff to see if I can find the cause of a regression, I saw this (pasting only one example of it): source="`echo "$source" | sed -e 's%/$%%'`/" You m̲u̲s̲t̲ ̲n̲o̲t̲ use double quotes both outside and inside of an old-style command substitution: some shells pair them

Re: [Lynx-dev] ANN: lynx2.9.0

2024-01-21 Thread Thorsten Glaser
Dixi quod… >Thomas Dickey dixit: > >>The current version of lynx is 2.9.0 btw should that not have been 2.9.0rel.1 following the usual versioning scheme? Otherwise it will still need to be named that for Debian, and 2.9.1dev.* will need to be renamed into 2.9.1~dev.* so the 2.9.1 release with thi

[Lynx-dev] An error with temporary file

2024-01-21 Thread Riku Virtanen
Hi, I installed new Lynx 9.0. I tried with www.tripadvisor.com/. Lynx said: Error with compressing temporary file. What does this mean? Now I have 2.8.9rel.1 and it opens Tripadvisor. Riku

Re: [Lynx-dev] An error with temporary file

2024-01-21 Thread Thomas Dickey
On Sun, Jan 21, 2024 at 10:06:47PM +0200, Riku Virtanen wrote: > Hi, > > I installed new Lynx 9.0. > I tried with www.tripadvisor.com/. > Lynx said: Error with compressing temporary file. > > What does this mean? Now I have 2.8.9rel.1 and it opens Tripadvisor. You can probably see the error in

Re: [Lynx-dev] shell stuff

2024-01-21 Thread Thomas Dickey
On Sun, Jan 21, 2024 at 07:06:45PM +, Thorsten Glaser wrote: > Hi, > > while scrolling through a diff to see if I can find the cause > of a regression, I saw this (pasting only one example of it): > > source="`echo "$source" | sed -e 's%/$%%'`/" > > You m̲u̲s̲t̲ ̲n̲o̲t̲ use double quotes bot

Re: [Lynx-dev] ANN: lynx2.9.0

2024-01-21 Thread Thomas Dickey
On Sun, Jan 21, 2024 at 07:39:37PM +, Thorsten Glaser wrote: > Dixi quod… > > >Thomas Dickey dixit: > > > >>The current version of lynx is 2.9.0 > > btw should that not have been 2.9.0rel.1 following the usual no - I stopped doing that, noted on my development page in January 2023. Among ot

Re: [Lynx-dev] shell stuff

2024-01-21 Thread Thorsten Glaser
Thomas Dickey dixit: >> source="`echo "$source" | sed -e 's%/$%%'`/" >> >> You m̲u̲s̲t̲ ̲n̲o̲t̲ use double quotes both outside and inside of an >> old-style command substitution: some shells pair them as >> "`echo " and " | sed -e 's%/$%%'`/" instead of nesting, and >> POSIX actively allows that.