mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 22:11:54 +02:00
20397: Fix places where texinfo changes "--" to "-"
This commit is contained in:
parent
f212e8072d
commit
fc960bad4e
4 changed files with 11 additions and 4 deletions
|
@ -6,6 +6,11 @@
|
||||||
* 20398: Src/Zle/zle_main.c: allow clean exit from within
|
* 20398: Src/Zle/zle_main.c: allow clean exit from within
|
||||||
a zle widget function.
|
a zle widget function.
|
||||||
|
|
||||||
|
2004-09-20 Bart Schaefer <schaefer@zsh.org>
|
||||||
|
|
||||||
|
* 20397: Doc/zmacros.yo, Doc/Zsh/invoke.yo, Doc/Zsh/zle.yo: tweaks
|
||||||
|
to account for texinfo's tendency to condense "--" into "-".
|
||||||
|
|
||||||
2004-09-20 Peter Stephenson <pws@csr.com>
|
2004-09-20 Peter Stephenson <pws@csr.com>
|
||||||
|
|
||||||
* 20391: Src/params.c: SHLVL didn't get updated in the
|
* 20391: Src/params.c: SHLVL didn't get updated in the
|
||||||
|
|
|
@ -80,8 +80,8 @@ is permitted and does not end option processing.
|
||||||
|
|
||||||
Except when the bf(sh)/bf(ksh) emulation single-letter options are in effect,
|
Except when the bf(sh)/bf(ksh) emulation single-letter options are in effect,
|
||||||
the option `tt(-b)' (or `tt(PLUS()b)') ends option processing.
|
the option `tt(-b)' (or `tt(PLUS()b)') ends option processing.
|
||||||
`tt(-b)' is like `tt(--)', except that further single-letter options can be
|
`tt(-b)' is like `tt(-)tt(-)', except that further single-letter options
|
||||||
stacked after the `tt(-b)' and will take effect as normal.
|
can be stacked after the `tt(-b)' and will take effect as normal.
|
||||||
|
|
||||||
startmenu()
|
startmenu()
|
||||||
menu(Compatibility)
|
menu(Compatibility)
|
||||||
|
|
|
@ -1491,7 +1491,7 @@ Inside a widget function, a call to this function treats the last key of
|
||||||
the key sequence which called the widget as the digit.
|
the key sequence which called the widget as the digit.
|
||||||
)
|
)
|
||||||
tindex(neg-argument)
|
tindex(neg-argument)
|
||||||
item(tt(neg-argument) (ESC--) (unbound) (unbound))(
|
item(tt(neg-argument) (ESC-DASH()) (unbound) (unbound))(
|
||||||
Changes the sign of the following argument.
|
Changes the sign of the following argument.
|
||||||
)
|
)
|
||||||
tindex(universal-argument)
|
tindex(universal-argument)
|
||||||
|
|
|
@ -19,7 +19,9 @@ DEFINEMACRO(redef)(3)(\
|
||||||
|
|
||||||
DEFINEMACRO(LPAR)(0)(CHAR(40))
|
DEFINEMACRO(LPAR)(0)(CHAR(40))
|
||||||
DEFINEMACRO(RPAR)(0)(CHAR(41))
|
DEFINEMACRO(RPAR)(0)(CHAR(41))
|
||||||
DEFINEMACRO(PLUS)(0)(CHAR(+))
|
DEFINEMACRO(PLUS)(0)(CHAR(43))
|
||||||
|
|
||||||
|
DEFINEMACRO(DASH)(0)(ifztexi(--)ifnztexi(-))
|
||||||
|
|
||||||
DEFINEMACRO(NL)(0)(
|
DEFINEMACRO(NL)(0)(
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue