Mercurial > vim
comparison src/xxd/xxd.c @ 33094:e1a219f47e3a v9.0.1832
patch 9.0.1832: xxd: reporting wrong version
Commit: https://github.com/vim/vim/commit/0ffa97e8fae5e73ff05ba24178cfc7206a3fe67e
Author: Christian Brabandt <cb@256bit.org>
Date: Thu Aug 31 21:03:02 2023 +0200
patch 9.0.1832: xxd: reporting wrong version
Problem: xxd: reporting wrong version (after 9.0.1827)
Solution: Update version string
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 31 Aug 2023 21:15:03 +0200 |
parents | 79b2eb83f2df |
children | 49f317597430 |
comparison
equal
deleted
inserted
replaced
33093:0a557299157c | 33094:e1a219f47e3a |
---|---|
54 * 08.06.2013 Little-endian hexdump (-e) and offset (-o) by Vadim Vygonets. | 54 * 08.06.2013 Little-endian hexdump (-e) and offset (-o) by Vadim Vygonets. |
55 * 11.01.2019 Add full 64/32 bit range to -o and output by Christer Jensen. | 55 * 11.01.2019 Add full 64/32 bit range to -o and output by Christer Jensen. |
56 * 04.02.2020 Add -d for decimal offsets by Aapo Rantalainen | 56 * 04.02.2020 Add -d for decimal offsets by Aapo Rantalainen |
57 * 14.01.2022 Disable extra newlines with -c0 -p by Erik Auerswald. | 57 * 14.01.2022 Disable extra newlines with -c0 -p by Erik Auerswald. |
58 * 20.06.2022 Permit setting the variable names used by -i by David Gow | 58 * 20.06.2022 Permit setting the variable names used by -i by David Gow |
59 * 31.08.2023 -R never/auto/always prints colored output | |
59 * | 60 * |
60 * (c) 1990-1998 by Juergen Weigert (jnweiger@gmail.com) | 61 * (c) 1990-1998 by Juergen Weigert (jnweiger@gmail.com) |
61 * | 62 * |
62 * I hereby grant permission to distribute and use xxd | 63 * I hereby grant permission to distribute and use xxd |
63 * under X11-MIT or GPL-2.0 (at the user's choice). | 64 * under X11-MIT or GPL-2.0 (at the user's choice). |
132 | 133 |
133 extern void perror __P((char *)); | 134 extern void perror __P((char *)); |
134 # endif | 135 # endif |
135 #endif | 136 #endif |
136 | 137 |
137 char version[] = "xxd 2022-01-14 by Juergen Weigert et al."; | 138 char version[] = "xxd 2023-08-31 by Juergen Weigert et al."; |
138 #ifdef WIN32 | 139 #ifdef WIN32 |
139 char osver[] = " (Win32)"; | 140 char osver[] = " (Win32)"; |
140 #else | 141 #else |
141 char osver[] = ""; | 142 char osver[] = ""; |
142 #endif | 143 #endif |