mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-04 06:14:50 +01: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:
parent
285b6c2538
commit
6a6e358baf
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue