diff options
| author | Miles Bader | 2004-09-05 01:53:47 +0000 |
|---|---|---|
| committer | Miles Bader | 2004-09-05 01:53:47 +0000 |
| commit | dd6ab82fb5c85168043306deda1fa5a5010183c6 (patch) | |
| tree | b3005de4b32c414ab30787c599860eec05fdb9d1 /lisp | |
| parent | 6f7dde8273383c74cc722196c9b37c04faeb263f (diff) | |
| download | emacs-dd6ab82fb5c85168043306deda1fa5a5010183c6.tar.gz emacs-dd6ab82fb5c85168043306deda1fa5a5010183c6.zip | |
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-35
Fix damage caused by trunk merge in emacs--unicode--0--patch-15
Some files in the emacs--cvs-trunk--0 branch had their arch id-tag changed
from tagline to explicit [because they were used as template files, and their
syntax didn't accommodate stripping comments, so the the generated files
caused id-tag conflicts when an in-tree build was done].
Unfortunately arch doesn't handle id-tag changes well, so this resulted in
the files appearing to be deleted, and then added again. When that changeset
was merged into the unicode branch, it resulted in unicode-specific changes
being dropped, and the trunk version being added.
To fix this, I restored these files to their pre-merge versions (from
emacs--unicode--0--patch-14), and then manually reapplied all changes from:
(1) the unicode branch from the bogus merge point to the current version
(emacs--unicode--0--patch-15 - emacs--unicode--0--patch-34)
(2) the trunk from the bogus merge point to the latest version which was
merged into the unicode branch
(emacs--cvs-trunk--0--patch-218 - emacs--cvs-trunk--0--patch-522)
and fixed any conflicts (mostly due to doubly-applied patch hunks that patch
couldn't detect).
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/makefile.w32-in | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index b2694bc2b78..e23830bc210 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in | |||
| @@ -42,6 +42,9 @@ EMACSOPT = -batch --no-init-file --no-site-file --multibyte | |||
| 42 | # Set EMACSLOADPATH correctly (already defined in environment). | 42 | # Set EMACSLOADPATH correctly (already defined in environment). |
| 43 | EMACSLOADPATH=$(lisp) | 43 | EMACSLOADPATH=$(lisp) |
| 44 | 44 | ||
| 45 | # Use C locale | ||
| 46 | LC_ALL = C | ||
| 47 | |||
| 45 | lisptagsfiles1 = $(lisp)/*.el | 48 | lisptagsfiles1 = $(lisp)/*.el |
| 46 | lisptagsfiles2 = $(lisp)/*/*.el | 49 | lisptagsfiles2 = $(lisp)/*/*.el |
| 47 | ETAGS = "../lib-src/$(BLD)/etags" | 50 | ETAGS = "../lib-src/$(BLD)/etags" |
| @@ -62,13 +65,7 @@ DONTCOMPILE = \ | |||
| 62 | $(lisp)/forms-d2.el \ | 65 | $(lisp)/forms-d2.el \ |
| 63 | $(lisp)/forms-pass.el \ | 66 | $(lisp)/forms-pass.el \ |
| 64 | $(lisp)/generic-x.el \ | 67 | $(lisp)/generic-x.el \ |
| 65 | $(lisp)/international/latin-1.el \ | 68 | $(lisp)/international/latin1-disp.el \ |
| 66 | $(lisp)/international/latin-2.el \ | ||
| 67 | $(lisp)/international/latin-3.el \ | ||
| 68 | $(lisp)/international/latin-4.el \ | ||
| 69 | $(lisp)/international/latin-5.el \ | ||
| 70 | $(lisp)/international/latin-8.el \ | ||
| 71 | $(lisp)/international/latin-9.el \ | ||
| 72 | $(lisp)/international/mule-conf.el \ | 69 | $(lisp)/international/mule-conf.el \ |
| 73 | $(lisp)/language/czech.el \ | 70 | $(lisp)/language/czech.el \ |
| 74 | $(lisp)/language/devanagari.el \ | 71 | $(lisp)/language/devanagari.el \ |
| @@ -87,6 +84,10 @@ DONTCOMPILE = \ | |||
| 87 | $(lisp)/language/thai.el \ | 84 | $(lisp)/language/thai.el \ |
| 88 | $(lisp)/language/utf-8-lang.el \ | 85 | $(lisp)/language/utf-8-lang.el \ |
| 89 | $(lisp)/language/georgian.el \ | 86 | $(lisp)/language/georgian.el \ |
| 87 | $(lisp)/language/vietnamese.el \ | ||
| 88 | $(lisp)/language/cyrillic.el \ | ||
| 89 | $(lisp)/language/chinese.el \ | ||
| 90 | $(lisp)/language/indian.el \ | ||
| 90 | $(lisp)/loaddefs.el \ | 91 | $(lisp)/loaddefs.el \ |
| 91 | $(lisp)/ldefs-boot.el \ | 92 | $(lisp)/ldefs-boot.el \ |
| 92 | $(lisp)/loadup.el \ | 93 | $(lisp)/loadup.el \ |