mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
Fixed indentation in next_tab_stop
This commit is contained in:
parent
bfccc7133d
commit
e3ec361552
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ static size_t next_tab_stop( size_t in )
|
||||||
/*
|
/*
|
||||||
Assume tab stops every 8 characters if undefined
|
Assume tab stops every 8 characters if undefined
|
||||||
*/
|
*/
|
||||||
size_t tab_width = (init_tabs > 0 ? (size_t)init_tabs : 8);
|
size_t tab_width = (init_tabs > 0 ? (size_t)init_tabs : 8);
|
||||||
return ( (in/tab_width)+1 )*tab_width;
|
return ( (in/tab_width)+1 )*tab_width;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue