code-style: use tabs for indent

This commit is contained in:
NRK
2022-11-05 02:45:54 +06:00
parent 736d4e142d
commit 1684db17a2

13
sxbm
View File

@ -66,11 +66,14 @@ bm_add() {
while [ -n "$1" ]; do
case "$1" in
*.*) [ -z "$LINK" ] &&
LINK="$1" ||
die "too many links\n$LINK\n$1" ;;
+*) TAGS="${TAGS}$1 " ;;
*) TITLE="${TITLE}$1 " ;;
*.*)
[ -n "$LINK" ] && die "too many links\n$LINK\n$1"
LINK="$1"
;;
+*) TAGS="${TAGS}$1 "
;;
*) TITLE="${TITLE}$1 "
;;
esac
shift
done