summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authormoyamo <moyamodehacker@gmail.com>2015-12-14 13:05:51 +0200
committermoyamo <moyamodehacker@gmail.com>2015-12-14 13:05:51 +0200
commit71deb74552d54630d99ae1db3647ebed7b3bc735 (patch)
tree4e5e7580d3b0fe51559a5d882fb13e16214bf32d /lib
parentd7797503418422148e84bc06c9e446bdd77c3a01 (diff)
downloadzsh-71deb74552d54630d99ae1db3647ebed7b3bc735.tar.gz
zsh-71deb74552d54630d99ae1db3647ebed7b3bc735.tar.bz2
zsh-71deb74552d54630d99ae1db3647ebed7b3bc735.zip
Fix indentation
Diffstat (limited to 'lib')
-rw-r--r--lib/termsupport.zsh8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/termsupport.zsh b/lib/termsupport.zsh
index 84c1e186e..871ab28df 100644
--- a/lib/termsupport.zsh
+++ b/lib/termsupport.zsh
@@ -32,10 +32,10 @@ function title {
# Try to use terminfo to set the title
# If the feature is available set title
if [[ -n "$terminfo[fsl]" ]] && [[ -n "$terminfo[tsl]" ]]; then
- echoti tsl
- print -Pn "$1"
- echoti fsl
- fi
+ echoti tsl
+ print -Pn "$1"
+ echoti fsl
+ fi
fi
;;
esac