diff options
| author | Paul Eggert | 2020-05-18 15:19:49 -0700 |
|---|---|---|
| committer | Eli Zaretskii | 2020-05-21 19:17:36 +0300 |
| commit | 62a5e890d72de11263996b25c1a7256423d22a7b (patch) | |
| tree | 7ed12ce3ff5299192c17f4d080396536b3fe31de /src | |
| parent | 8cc453d788883bccc2d86d5bc89e644ecd48eb9a (diff) | |
| download | emacs-62a5e890d72de11263996b25c1a7256423d22a7b.tar.gz emacs-62a5e890d72de11263996b25c1a7256423d22a7b.zip | |
Redo RCS Id for pdumper
* lisp/version.el: Don’t put an RCS Id style string into the
executable via purecopy, as this does not work with the pdumper.
* src/emacs.c (RCS_Id): New constant, for 'ident'.
(cherry picked from commit 3d1bcfba5e21b29be8669aa2a8f27b344c9e02fd)
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c index c5a760d29f6..db3e92a4773 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -124,6 +124,11 @@ static const char emacs_version[] = PACKAGE_VERSION; | |||
| 124 | static const char emacs_copyright[] = COPYRIGHT; | 124 | static const char emacs_copyright[] = COPYRIGHT; |
| 125 | static const char emacs_bugreport[] = PACKAGE_BUGREPORT; | 125 | static const char emacs_bugreport[] = PACKAGE_BUGREPORT; |
| 126 | 126 | ||
| 127 | /* Put version info into the executable in the form that 'ident' uses. */ | ||
| 128 | char const EXTERNALLY_VISIBLE RCS_Id[] | ||
| 129 | = "$Id" ": GNU Emacs " PACKAGE_VERSION | ||
| 130 | " (" EMACS_CONFIGURATION " " EMACS_CONFIG_FEATURES ") $"; | ||
| 131 | |||
| 127 | /* Empty lisp strings. To avoid having to build any others. */ | 132 | /* Empty lisp strings. To avoid having to build any others. */ |
| 128 | Lisp_Object empty_unibyte_string, empty_multibyte_string; | 133 | Lisp_Object empty_unibyte_string, empty_multibyte_string; |
| 129 | 134 | ||