diff options
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 ea9c4cd79dc..49793fd1e86 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 | ||