mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-11-25 14:20:53 +01:00
users/17134: avoid bad math error
This commit is contained in:
parent
0ea4e90a7a
commit
38a4364db5
2 changed files with 6 additions and 2 deletions
|
|
@ -18,6 +18,10 @@
|
||||||
* Jeremy Mates: 30505: Completion/Unix/Command/_wget: Allow
|
* Jeremy Mates: 30505: Completion/Unix/Command/_wget: Allow
|
||||||
multiple --header=.
|
multiple --header=.
|
||||||
|
|
||||||
|
2012-06-06 Barton E. Schaefer <schaefer@zsh.org>
|
||||||
|
|
||||||
|
* users/17134: Functions/Misc/promptnl: avoid bad math error
|
||||||
|
|
||||||
2012-06-06 Peter Stephenson <pws@csr.com>
|
2012-06-06 Peter Stephenson <pws@csr.com>
|
||||||
|
|
||||||
* Vincent: 30497: Completion/Unix/Command/_xmlsoft: option
|
* Vincent: 30497: Completion/Unix/Command/_xmlsoft: option
|
||||||
|
|
@ -16365,5 +16369,5 @@
|
||||||
|
|
||||||
*****************************************************
|
*****************************************************
|
||||||
* This is used by the shell to define $ZSH_PATCHLEVEL
|
* This is used by the shell to define $ZSH_PATCHLEVEL
|
||||||
* $Revision: 1.5669 $
|
* $Revision: 1.5670 $
|
||||||
*****************************************************
|
*****************************************************
|
||||||
|
|
|
||||||
|
|
@ -62,7 +62,7 @@ done
|
||||||
|
|
||||||
# If the cursor is not in the first column, emit EOLMARK and newline.
|
# If the cursor is not in the first column, emit EOLMARK and newline.
|
||||||
|
|
||||||
(( ${${RECV#*\;}%R} > 1 )) && print -P -- $EOLMARK
|
(( ${${${RECV#*\;}%R}:-0} > 1 )) && print -P -- $EOLMARK
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue