summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2024-04-14 23:45:02 +0200
committerChristian Brabandt <cb@256bit.org>2024-04-14 23:45:16 +0200
commitf23193496589553d986e0f5c2a6170485c1bccea (patch)
tree72de208c7b495c7463b0dee6c9f4486a52dd4cd4
parentf01493c55062c01b1cdf9b1e946577f4d1bdddf3 (diff)
patch 9.1.0330: v9.1.0327 contains an unrelated changev9.1.0330
Problem: v9.1.0327 contains an unrelated change Solution: Revert back $USR_VIMRC_FILE to $HOME instead of ~ Signed-off-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--src/os_unix.h2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/os_unix.h b/src/os_unix.h
index 37b0ba2e18..d214a4aaf1 100644
--- a/src/os_unix.h
+++ b/src/os_unix.h
@@ -236,7 +236,7 @@ typedef struct dsc$descriptor DESC;
# ifdef VMS
# define USR_VIMRC_FILE "sys$login:.vimrc"
# else
-# define USR_VIMRC_FILE "~/.vimrc"
+# define USR_VIMRC_FILE "$HOME/.vimrc"
# endif
#endif
diff --git a/src/version.c b/src/version.c
index 91a3d612e7..7536c96608 100644
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 330,
+/**/
329,
/**/
328,