1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-04 22:51:42 +02:00

43726: Add tests for semicolon in the middle of a sublist not terminating it.

This commit is contained in:
Daniel Shahaf 2018-10-24 15:17:35 +00:00
parent a4e435b873
commit 73b1328049
2 changed files with 15 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2018-10-24 Daniel Shahaf <d.s@daniel.shahaf.name>
* 43726: Test/A01grammar.ztst: Add tests for semicolon in the
middle of a sublist not terminating it.
2018-10-24 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 43723: Completion/Unix/Command/_mkdir: fix for builtin

View file

@ -873,3 +873,13 @@
0:Assignment-only current shell commands in LHS of pipelin
>1
>1
echo pipe | ; sed s/pipe/PIPE/
true && ; echo and true
false && ; echo and false
true || ; echo or true
false || ; echo or false
0:semicolon is equivalent to newline
>PIPE
>and true
>or false