1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-05 15:16:19 +02:00

50356: work around a yodl bug (mishandling of \'e)

the bug has been fixed at least in yodl-4.04.02
This commit is contained in:
Jun-ichi Takimoto 2022-06-11 14:09:02 +09:00
parent 285b6c2538
commit 6a6e358baf
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2022-06-11 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50356: Etc/FAQ.yo: work around a yodl bug (mishandling of \'e)
2022-06-09 Bart Schaefer <schaefer@zsh.org>
* 50363: Src/Modules/param_private.c: avoid use of heap memory

View File

@ -1055,8 +1055,9 @@ label(31)
Other ways of causing word splitting include a judicious use of
`eval':
COMMENT(CHAR(39) is a workaround for a bug in some versions of yodl)\
verb(
sentence="Longtemps, je me suis couch\\'e de bonne heure."
sentence="Longtemps, je me suis couch\\CHAR(39)e de bonne heure."
eval "words=($sentence)"
)
after which $words is an array with the words of $sentence (note