mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 05:13:10 +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
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue