diff options
| -rw-r--r-- | msdos/ChangeLog | 4 | ||||
| -rw-r--r-- | msdos/mainmake.v2 | 2 | ||||
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/emacs.c | 2 |
4 files changed, 12 insertions, 1 deletions
diff --git a/msdos/ChangeLog b/msdos/ChangeLog index 7df89880410..7227b8b8b51 100644 --- a/msdos/ChangeLog +++ b/msdos/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-08-15 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * mainmake.v2 (version): Update due to change in emacs.c. | ||
| 4 | |||
| 1 | 2010-08-05 Eli Zaretskii <eliz@gnu.org> | 5 | 2010-08-05 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * sed1v2.inp (UNEXEC_OBJ): Edit to unexcoff.o, due to renaming of | 7 | * 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 | |||
| 65 | top_srcdir := $(subst \,/,$(shell cd)) | 65 | top_srcdir := $(subst \,/,$(shell cd)) |
| 66 | 66 | ||
| 67 | # Find out which version of Emacs this is. | 67 | # Find out which version of Emacs this is. |
| 68 | version := ${shell sed -n -e '/^const char emacs_version/s/^[^"]*\("[^"]*"\).*/\1/p' src/emacs.c} | 68 | version := ${shell sed -n -e '/^static const char emacs_version/s/^[^"]*\("[^"]*"\).*/\1/p' src/emacs.c} |
| 69 | 69 | ||
| 70 | # Q: Do we need to bootstrap? | 70 | # Q: Do we need to bootstrap? |
| 71 | # A: Only if we find admin/admin.el, i.e. we are building out of | 71 | # A: Only if we find admin/admin.el, i.e. we are building out of |
diff --git a/src/ChangeLog b/src/ChangeLog index d6b1c2347a2..85d4da73803 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2010-08-20 Eli Zaretskii <eliz@gnu.org> | 1 | 2010-08-20 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * emacs.c <emacs_version>: Add a comment regarding | ||
| 4 | msdos/mainmake.v2's dependency on the syntax of this declaration. | ||
| 5 | |||
| 6 | 2010-08-20 Eli Zaretskii <eliz@gnu.org> | ||
| 7 | |||
| 3 | * dispnew.c (buffer_posn_from_coords): Fix calculation of buffer | 8 | * dispnew.c (buffer_posn_from_coords): Fix calculation of buffer |
| 4 | position for R2L lines by mirroring the pixel position wrt the | 9 | position for R2L lines by mirroring the pixel position wrt the |
| 5 | text are box. Improve commentary. | 10 | text are box. Improve commentary. |
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 <http://www.gnu.org/licenses/>. */ | |||
| 91 | #endif | 91 | #endif |
| 92 | #endif | 92 | #endif |
| 93 | 93 | ||
| 94 | /* If you change the following line, remember to update | ||
| 95 | msdos/mainmake.v2 which gleans the Emacs version from it! */ | ||
| 94 | static const char emacs_copyright[] = "Copyright (C) 2010 Free Software Foundation, Inc."; | 96 | static const char emacs_copyright[] = "Copyright (C) 2010 Free Software Foundation, Inc."; |
| 95 | static const char emacs_version[] = "24.0.50"; | 97 | static const char emacs_version[] = "24.0.50"; |
| 96 | 98 | ||