]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.0.1832: xxd: reporting wrong version v9.0.1832
authorChristian Brabandt <cb@256bit.org>
Thu, 31 Aug 2023 19:03:02 +0000 (21:03 +0200)
committerChristian Brabandt <cb@256bit.org>
Thu, 31 Aug 2023 19:04:52 +0000 (21:04 +0200)
Problem:  xxd: reporting wrong version (after 9.0.1827)
Solution: Update version string

Signed-off-by: Christian Brabandt <cb@256bit.org>
src/version.c
src/xxd/xxd.c

index 12979e6b6689ddb7e6a208808eae5932a66049dc..796cff9b3737c3ab54cd7486247f0326b8041cd5 100644 (file)
@@ -699,6 +699,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1832,
 /**/
     1831,
 /**/
index a3827a4b8ede4a4c50412c60deede4b533ae7ee7..590cd44aaded43c09aac3427fb2184fc39810f61 100644 (file)
@@ -56,6 +56,7 @@
  * 04.02.2020  Add -d for decimal offsets by Aapo Rantalainen
  * 14.01.2022  Disable extra newlines with -c0 -p by Erik Auerswald.
  * 20.06.2022  Permit setting the variable names used by -i by David Gow
+ * 31.08.2023  -R never/auto/always prints colored output
  *
  * (c) 1990-1998 by Juergen Weigert (jnweiger@gmail.com)
  *
@@ -134,7 +135,7 @@ extern void perror __P((char *));
 # endif
 #endif
 
-char version[] = "xxd 2022-01-14 by Juergen Weigert et al.";
+char version[] = "xxd 2023-08-31 by Juergen Weigert et al.";
 #ifdef WIN32
 char osver[] = " (Win32)";
 #else