# HG changeset patch # User Bram Moolenaar # Date 1601071204 -7200 # Node ID 995f5e061e276cd5c24804656dc55da25a10b362 # Parent 8d9d6be4de039a5519e0b18b8f318be9374d360b patch 8.2.1743: cannot build without the eval feature Commit: https://github.com/vim/vim/commit/273af497cac345897cf6369baa87a070876a5815 Author: Bram Moolenaar Date: Fri Sep 25 23:49:01 2020 +0200 patch 8.2.1743: cannot build without the eval feature Problem: Cannot build without the eval feature. Solution: Move shorten_dir outside of #ifdef. diff --git a/src/filepath.c b/src/filepath.c --- a/src/filepath.c +++ b/src/filepath.c @@ -710,6 +710,69 @@ repeat: return valid; } +/* + * Shorten the path of a file from "~/foo/../.bar/fname" to "~/f/../.b/fname" + * "trim_len" specifies how many characters to keep for each directory. + * Must be 1 or more. + * It's done in-place. + */ + static void +shorten_dir_len(char_u *str, int trim_len) +{ + char_u *tail, *s, *d; + int skip = FALSE; + int dirchunk_len = 0; + + tail = gettail(str); + d = str; + for (s = str; ; ++s) + { + if (s >= tail) // copy the whole tail + { + *d++ = *s; + if (*s == NUL) + break; + } + else if (vim_ispathsep(*s)) // copy '/' and next char + { + *d++ = *s; + skip = FALSE; + dirchunk_len = 0; + } + else if (!skip) + { + *d++ = *s; // copy next char + if (*s != '~' && *s != '.') // and leading "~" and "." + { + ++dirchunk_len; // only count word chars for the size + + // keep copying chars until we have our preferred length (or + // until the above if/else branches move us along) + if (dirchunk_len >= trim_len) + skip = TRUE; + } + + if (has_mbyte) + { + int l = mb_ptr2len(s); + + while (--l > 0) + *d++ = *++s; + } + } + } +} + +/* + * Shorten the path of a file from "~/foo/../.bar/fname" to "~/f/../.b/fname" + * It's done in-place. + */ + void +shorten_dir(char_u *str) +{ + shorten_dir_len(str, 1); +} + #if defined(FEAT_EVAL) || defined(PROTO) /* @@ -1352,69 +1415,6 @@ f_mkdir(typval_T *argvars, typval_T *ret } /* - * Shorten the path of a file from "~/foo/../.bar/fname" to "~/f/../.b/fname" - * "trim_len" specifies how many characters to keep for each directory. - * Must be 1 or more. - * It's done in-place. - */ - static void -shorten_dir_len(char_u *str, int trim_len) -{ - char_u *tail, *s, *d; - int skip = FALSE; - int dirchunk_len = 0; - - tail = gettail(str); - d = str; - for (s = str; ; ++s) - { - if (s >= tail) // copy the whole tail - { - *d++ = *s; - if (*s == NUL) - break; - } - else if (vim_ispathsep(*s)) // copy '/' and next char - { - *d++ = *s; - skip = FALSE; - dirchunk_len = 0; - } - else if (!skip) - { - *d++ = *s; // copy next char - if (*s != '~' && *s != '.') // and leading "~" and "." - { - ++dirchunk_len; // only count word chars for the size - - // keep copying chars until we have our preferred length (or - // until the above if/else branches move us along) - if (dirchunk_len >= trim_len) - skip = TRUE; - } - - if (has_mbyte) - { - int l = mb_ptr2len(s); - - while (--l > 0) - *d++ = *++s; - } - } - } -} - -/* - * Shorten the path of a file from "~/foo/../.bar/fname" to "~/f/../.b/fname" - * It's done in-place. - */ - void -shorten_dir(char_u *str) -{ - shorten_dir_len(str, 1); -} - -/* * "pathshorten()" function */ void diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1743, +/**/ 1742, /**/ 1741,