mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-09 03:51:20 -03:00
Fixed indentation in next_tab_stop
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user