mirror of
https://github.com/neovim/neovim.git
synced 2025-01-01 17:23:36 -07:00
Lint: fix line length >80
Introduced here:
4bfac00aa3 (diff-2bf87eef9f7b99dcea4b0c55beee2d63R78)
This commit is contained in:
parent
c3b6cd300f
commit
ed1925e0d1
@ -75,7 +75,8 @@ static char *get_xdg_home(const XDGVarType idx)
|
||||
char *dir = stdpaths_get_xdg_var(idx);
|
||||
if (dir) {
|
||||
#if defined(WIN32)
|
||||
dir = concat_fnames_realloc(dir, (idx == kXDGDataHome ? "nvim-data" : "nvim"),
|
||||
dir = concat_fnames_realloc(dir,
|
||||
(idx == kXDGDataHome ? "nvim-data" : "nvim"),
|
||||
true);
|
||||
#else
|
||||
dir = concat_fnames_realloc(dir, "nvim", true);
|
||||
|
Loading…
Reference in New Issue
Block a user