mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-10 22:31:24 +02:00
52142: Move _history_modifiers call to _parameter
_parameters is used in many contexts, like assignments in command position, assignment after typeset, etc, where history modifiers are not valid. _brace_parameter already calls _history_modifiers explicitly so this seems more in line with that.
This commit is contained in:
parent
0eab788437
commit
aecef41f2e
3 changed files with 11 additions and 5 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2023-09-15 Mikael Magnusson <mikachu@gmail.com>
|
||||||
|
|
||||||
|
* 52142: Completion/Zsh/Context/_parameter,
|
||||||
|
Completion/Zsh/Type/_parameters: Move _history_modifiers call
|
||||||
|
to _parameter
|
||||||
|
|
||||||
2023-09-13 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
|
2023-09-13 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
|
||||||
|
|
||||||
* 52122 + 52129: Src/subst.c, Test/D04parameter.ztst: fix (#)
|
* 52122 + 52129: Src/subst.c, Test/D04parameter.ztst: fix (#)
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||