mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-01 04:24:01 +08:00
Fixed indentation in next_tab_stop
This commit is contained in:
parent
bfccc7133d
commit
e3ec361552
|
@ -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 New Issue
Block a user