diff options
Diffstat (limited to 'lib-src/emacsclient.c')
-rw-r--r-- | lib-src/emacsclient.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index fd56007b156..4da532b42de 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -84,10 +84,6 @@ char *w32_getenv (const char *); #include <min-max.h> #include <unlocked-io.h> -#ifndef VERSION -#define VERSION "unspecified" -#endif - /* Work around GCC bug 88251. */ #if GNUC_PREREQ (7, 0, 0) # pragma GCC diagnostic ignored "-Wformat-truncation=2" @@ -546,7 +542,7 @@ decode_options (int argc, char **argv) break; case 'V': - message (false, "emacsclient %s\n", VERSION); + message (false, "emacsclient %s\n", PACKAGE_VERSION); exit (EXIT_SUCCESS); break; |