From: Eli Zaretskii Date: Fri, 20 Aug 2010 19:45:24 +0000 (+0300) Subject: Fix version string in top-level MSDOS Makefile. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~45^2~511^2~27^2^2 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=491a154635caf0bf90fd1c4ad35f02d43eac98ee;p=emacs.git Fix version string in top-level MSDOS Makefile. msods/mainmake.v2 (version): Update due to change in emacs.c. src/emacs.c : Add a comment regarding msdos/mainmake.v2's dependency on the syntax of this declaration. --- diff --git a/msdos/ChangeLog b/msdos/ChangeLog index 7df89880410..7227b8b8b51 100644 --- a/msdos/ChangeLog +++ b/msdos/ChangeLog @@ -1,3 +1,7 @@ +2010-08-15 Eli Zaretskii + + * mainmake.v2 (version): Update due to change in emacs.c. + 2010-08-05 Eli Zaretskii * sed1v2.inp (UNEXEC_OBJ): Edit to unexcoff.o, due to renaming of diff --git a/msdos/mainmake.v2 b/msdos/mainmake.v2 index 4bb13e367ed..79bd827d8c6 100644 --- a/msdos/mainmake.v2 +++ b/msdos/mainmake.v2 @@ -65,7 +65,7 @@ MAKESHELL=/xyzzy/command top_srcdir := $(subst \,/,$(shell cd)) # Find out which version of Emacs this is. -version := ${shell sed -n -e '/^const char emacs_version/s/^[^"]*\("[^"]*"\).*/\1/p' src/emacs.c} +version := ${shell sed -n -e '/^static const char emacs_version/s/^[^"]*\("[^"]*"\).*/\1/p' src/emacs.c} # Q: Do we need to bootstrap? # A: Only if we find admin/admin.el, i.e. we are building out of diff --git a/src/ChangeLog b/src/ChangeLog index 024cf18efb6..24754355fdc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2010-08-15 Eli Zaretskii + + * emacs.c : Add a comment regarding + msdos/mainmake.v2's dependency on the syntax of this declaration. + 2010-08-13 Eli Zaretskii * unexcoff.c: Remove the parts used when "emacs" is not defined. diff --git a/src/emacs.c b/src/emacs.c index 026a210af50..67a99d674e7 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -91,6 +91,8 @@ along with GNU Emacs. If not, see . */ #endif #endif +/* If you change the following line, remember to update + msdos/mainmake.v2 which gleans the Emacs version from it! */ static const char emacs_copyright[] = "Copyright (C) 2010 Free Software Foundation, Inc."; static const char emacs_version[] = "24.0.50";