diff options
Diffstat (limited to 'Functions')
-rw-r--r-- | Functions/Zle/narrow-to-region | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Functions/Zle/narrow-to-region b/Functions/Zle/narrow-to-region index 1f8438789..86fd7ac13 100644 --- a/Functions/Zle/narrow-to-region +++ b/Functions/Zle/narrow-to-region @@ -68,9 +68,7 @@ if [[ -n $_ntr_save || -z $_ntr_restore ]]; then _ntr_end=$CURSOR fi - if (( _ntr_start == _ntr_end )); then - return 1 - elif (( _ntr_start > _ntr_end )); then + if (( _ntr_start > _ntr_end )); then _ntr_swap=_ntr_start _ntr_start=_ntr_end _ntr_end=_ntr_swap |