1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-13 03:32:24 +00:00

NEWS: fix typo (re: bd283959)

This commit is contained in:
Martijn Dekker 2020-09-28 04:47:53 +02:00
parent bd283959be
commit ddcef2137e

2
NEWS
View file

@ -5,7 +5,7 @@ Any uppercase BUG_* names are modernish shell bug IDs.
2020-09-27:
- The shell's lexical analisys of a 'case' statement within a do...done block
- The shell's lexical analysis of a 'case' statement within a do...done block
within a command substitution of the form $(...) has been fixed so that code
like the following no longer throws a spurious syntax error:
x=$(for i in 1; do case $i in word) true;; esac; done)