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 /src | |
| 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 'src')
| -rw-r--r-- | src/Makefile.in | 2 | ||||
| -rw-r--r-- | src/makefile.w32-in | 68 |
2 files changed, 68 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 2ec1dad4c2e..14a4a64f1cc 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -1111,7 +1111,7 @@ process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \ | |||
| 1111 | keyboard.h $(config_h) | 1111 | keyboard.h $(config_h) |
| 1112 | regex.o: regex.c syntax.h buffer.h $(config_h) regex.h category.h character.h \ | 1112 | regex.o: regex.c syntax.h buffer.h $(config_h) regex.h category.h character.h \ |
| 1113 | charset.h | 1113 | charset.h |
| 1114 | region-cache.o: region-cache.c buffer.h region-cache.h | 1114 | region-cache.o: region-cache.c buffer.h region-cache.h $(config_h) |
| 1115 | scroll.o: scroll.c termchar.h dispextern.h frame.h msdos.h keyboard.h \ | 1115 | scroll.o: scroll.c termchar.h dispextern.h frame.h msdos.h keyboard.h \ |
| 1116 | $(config_h) | 1116 | $(config_h) |
| 1117 | search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \ | 1117 | search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \ |
diff --git a/src/makefile.w32-in b/src/makefile.w32-in index a7efcc4cae5..5918e771399 100644 --- a/src/makefile.w32-in +++ b/src/makefile.w32-in | |||
| @@ -115,6 +115,8 @@ OBJ1 = $(BLD)/abbrev.$(O) \ | |||
| 115 | $(BLD)/region-cache.$(O) \ | 115 | $(BLD)/region-cache.$(O) \ |
| 116 | $(BLD)/strftime.$(O) \ | 116 | $(BLD)/strftime.$(O) \ |
| 117 | $(BLD)/charset.$(O) \ | 117 | $(BLD)/charset.$(O) \ |
| 118 | $(BLD)/character.$(O) \ | ||
| 119 | $(BLD)/chartab.$(O) \ | ||
| 118 | $(BLD)/coding.$(O) \ | 120 | $(BLD)/coding.$(O) \ |
| 119 | $(BLD)/category.$(O) \ | 121 | $(BLD)/category.$(O) \ |
| 120 | $(BLD)/ccl.$(O) \ | 122 | $(BLD)/ccl.$(O) \ |
| @@ -122,6 +124,7 @@ OBJ1 = $(BLD)/abbrev.$(O) \ | |||
| 122 | $(BLD)/fringe.$(O) \ | 124 | $(BLD)/fringe.$(O) \ |
| 123 | $(BLD)/image.$(O) | 125 | $(BLD)/image.$(O) |
| 124 | 126 | ||
| 127 | |||
| 125 | WIN32OBJ = $(BLD)/w32term.$(O) \ | 128 | WIN32OBJ = $(BLD)/w32term.$(O) \ |
| 126 | $(BLD)/w32xfns.$(O) \ | 129 | $(BLD)/w32xfns.$(O) \ |
| 127 | $(BLD)/w32fns.$(O) \ | 130 | $(BLD)/w32fns.$(O) \ |
| @@ -167,7 +170,7 @@ $(EMACS): $(DOC) $(TEMACS) | |||
| 167 | temacs: $(BLD) $(TEMACS) | 170 | temacs: $(BLD) $(TEMACS) |
| 168 | $(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) | 171 | $(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) |
| 169 | $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS) | 172 | $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS) |
| 170 | "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16 | 173 | "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 20 |
| 171 | 174 | ||
| 172 | bootstrap: bootstrap-emacs | 175 | bootstrap: bootstrap-emacs |
| 173 | 176 | ||
| @@ -262,6 +265,7 @@ $(BLD)/abbrev.$(O) : \ | |||
| 262 | $(EMACS_ROOT)/src/m/intel386.h \ | 265 | $(EMACS_ROOT)/src/m/intel386.h \ |
| 263 | $(EMACS_ROOT)/src/config.h \ | 266 | $(EMACS_ROOT)/src/config.h \ |
| 264 | $(SRC)/buffer.h \ | 267 | $(SRC)/buffer.h \ |
| 268 | $(SRC)/character.h \ | ||
| 265 | $(SRC)/charset.h \ | 269 | $(SRC)/charset.h \ |
| 266 | $(SRC)/commands.h \ | 270 | $(SRC)/commands.h \ |
| 267 | $(SRC)/dispextern.h \ | 271 | $(SRC)/dispextern.h \ |
| @@ -277,6 +281,7 @@ $(BLD)/alloc.$(O) : \ | |||
| 277 | $(EMACS_ROOT)/src/config.h \ | 281 | $(EMACS_ROOT)/src/config.h \ |
| 278 | $(SRC)/blockinput.h \ | 282 | $(SRC)/blockinput.h \ |
| 279 | $(SRC)/buffer.h \ | 283 | $(SRC)/buffer.h \ |
| 284 | $(SRC)/character.h \ | ||
| 280 | $(SRC)/charset.h \ | 285 | $(SRC)/charset.h \ |
| 281 | $(SRC)/composite.h \ | 286 | $(SRC)/composite.h \ |
| 282 | $(SRC)/dispextern.h \ | 287 | $(SRC)/dispextern.h \ |
| @@ -359,6 +364,7 @@ $(BLD)/callproc.$(O) : \ | |||
| 359 | $(EMACS_ROOT)/nt/inc/sys/file.h \ | 364 | $(EMACS_ROOT)/nt/inc/sys/file.h \ |
| 360 | $(SRC)/buffer.h \ | 365 | $(SRC)/buffer.h \ |
| 361 | $(SRC)/ccl.h \ | 366 | $(SRC)/ccl.h \ |
| 367 | $(SRC)/character.h \ | ||
| 362 | $(SRC)/charset.h \ | 368 | $(SRC)/charset.h \ |
| 363 | $(SRC)/coding.h \ | 369 | $(SRC)/coding.h \ |
| 364 | $(SRC)/commands.h \ | 370 | $(SRC)/commands.h \ |
| @@ -375,6 +381,7 @@ $(BLD)/casefiddle.$(O) : \ | |||
| 375 | $(EMACS_ROOT)/src/m/intel386.h \ | 381 | $(EMACS_ROOT)/src/m/intel386.h \ |
| 376 | $(EMACS_ROOT)/src/config.h \ | 382 | $(EMACS_ROOT)/src/config.h \ |
| 377 | $(SRC)/buffer.h \ | 383 | $(SRC)/buffer.h \ |
| 384 | $(SRC)/character.h \ | ||
| 378 | $(SRC)/charset.h \ | 385 | $(SRC)/charset.h \ |
| 379 | $(SRC)/commands.h \ | 386 | $(SRC)/commands.h \ |
| 380 | $(SRC)/composite.h \ | 387 | $(SRC)/composite.h \ |
| @@ -396,6 +403,7 @@ $(BLD)/category.$(O) : \ | |||
| 396 | $(EMACS_ROOT)/src/config.h \ | 403 | $(EMACS_ROOT)/src/config.h \ |
| 397 | $(SRC)/buffer.h \ | 404 | $(SRC)/buffer.h \ |
| 398 | $(SRC)/category.h \ | 405 | $(SRC)/category.h \ |
| 406 | $(SRC)/character.h \ | ||
| 399 | $(SRC)/charset.h \ | 407 | $(SRC)/charset.h \ |
| 400 | $(SRC)/keymap.h | 408 | $(SRC)/keymap.h |
| 401 | 409 | ||
| @@ -405,9 +413,22 @@ $(BLD)/ccl.$(O) : \ | |||
| 405 | $(EMACS_ROOT)/src/m/intel386.h \ | 413 | $(EMACS_ROOT)/src/m/intel386.h \ |
| 406 | $(EMACS_ROOT)/src/config.h \ | 414 | $(EMACS_ROOT)/src/config.h \ |
| 407 | $(SRC)/ccl.h \ | 415 | $(SRC)/ccl.h \ |
| 416 | $(SRC)/character.h \ | ||
| 408 | $(SRC)/charset.h \ | 417 | $(SRC)/charset.h \ |
| 409 | $(SRC)/coding.h | 418 | $(SRC)/coding.h |
| 410 | 419 | ||
| 420 | $(BLD)/character.$(O) : \ | ||
| 421 | $(SRC)/character.c \ | ||
| 422 | $(EMACS_ROOT)/src/s/ms-w32.h \ | ||
| 423 | $(EMACS_ROOT)/src/m/intel386.h \ | ||
| 424 | $(EMACS_ROOT)/src/config.h \ | ||
| 425 | $(SRC)/buffer.h \ | ||
| 426 | $(SRC)/character.h \ | ||
| 427 | $(SRC)/charset.h \ | ||
| 428 | $(SRC)/coding.h \ | ||
| 429 | $(SRC)/composite.h \ | ||
| 430 | $(SRC)/disptab.h | ||
| 431 | |||
| 411 | $(BLD)/charset.$(O) : \ | 432 | $(BLD)/charset.$(O) : \ |
| 412 | $(SRC)/charset.c \ | 433 | $(SRC)/charset.c \ |
| 413 | $(EMACS_ROOT)/src/s/ms-w32.h \ | 434 | $(EMACS_ROOT)/src/s/ms-w32.h \ |
| @@ -415,11 +436,20 @@ $(BLD)/charset.$(O) : \ | |||
| 415 | $(EMACS_ROOT)/src/config.h \ | 436 | $(EMACS_ROOT)/src/config.h \ |
| 416 | $(SRC)/buffer.h \ | 437 | $(SRC)/buffer.h \ |
| 417 | $(SRC)/ccl.h \ | 438 | $(SRC)/ccl.h \ |
| 439 | $(SRC)/character.h \ | ||
| 418 | $(SRC)/charset.h \ | 440 | $(SRC)/charset.h \ |
| 419 | $(SRC)/coding.h \ | 441 | $(SRC)/coding.h \ |
| 420 | $(SRC)/composite.h \ | 442 | $(SRC)/composite.h \ |
| 421 | $(SRC)/disptab.h | 443 | $(SRC)/disptab.h |
| 422 | 444 | ||
| 445 | $(BLD)/chartab.$(O) : \ | ||
| 446 | $(SRC)/chartab.c \ | ||
| 447 | $(EMACS_ROOT)/src/s/ms-w32.h \ | ||
| 448 | $(EMACS_ROOT)/src/m/intel386.h \ | ||
| 449 | $(EMACS_ROOT)/src/config.h \ | ||
| 450 | $(SRC)/charset.h \ | ||
| 451 | $(SRC)/character.h | ||
| 452 | |||
| 423 | $(BLD)/cm.$(O) : \ | 453 | $(BLD)/cm.$(O) : \ |
| 424 | $(SRC)/cm.c \ | 454 | $(SRC)/cm.c \ |
| 425 | $(EMACS_ROOT)/src/s/ms-w32.h \ | 455 | $(EMACS_ROOT)/src/s/ms-w32.h \ |
| @@ -434,6 +464,7 @@ $(BLD)/cmds.$(O) : \ | |||
| 434 | $(EMACS_ROOT)/src/m/intel386.h \ | 464 | $(EMACS_ROOT)/src/m/intel386.h \ |
| 435 | $(EMACS_ROOT)/src/config.h \ | 465 | $(EMACS_ROOT)/src/config.h \ |
| 436 | $(SRC)/buffer.h \ | 466 | $(SRC)/buffer.h \ |
| 467 | $(SRC)/character.h \ | ||
| 437 | $(SRC)/charset.h \ | 468 | $(SRC)/charset.h \ |
| 438 | $(SRC)/commands.h \ | 469 | $(SRC)/commands.h \ |
| 439 | $(SRC)/dispextern.h \ | 470 | $(SRC)/dispextern.h \ |
| @@ -451,6 +482,7 @@ $(BLD)/coding.$(O) : \ | |||
| 451 | $(EMACS_ROOT)/src/config.h \ | 482 | $(EMACS_ROOT)/src/config.h \ |
| 452 | $(SRC)/buffer.h \ | 483 | $(SRC)/buffer.h \ |
| 453 | $(SRC)/ccl.h \ | 484 | $(SRC)/ccl.h \ |
| 485 | $(SRC)/character.h \ | ||
| 454 | $(SRC)/charset.h \ | 486 | $(SRC)/charset.h \ |
| 455 | $(SRC)/coding.h \ | 487 | $(SRC)/coding.h \ |
| 456 | $(SRC)/composite.h \ | 488 | $(SRC)/composite.h \ |
| @@ -466,6 +498,7 @@ $(BLD)/composite.$(O) : \ | |||
| 466 | $(EMACS_ROOT)/src/m/intel386.h \ | 498 | $(EMACS_ROOT)/src/m/intel386.h \ |
| 467 | $(EMACS_ROOT)/src/config.h \ | 499 | $(EMACS_ROOT)/src/config.h \ |
| 468 | $(SRC)/buffer.h \ | 500 | $(SRC)/buffer.h \ |
| 501 | $(SRC)/character.h \ | ||
| 469 | $(SRC)/charset.h \ | 502 | $(SRC)/charset.h \ |
| 470 | $(SRC)/composite.h \ | 503 | $(SRC)/composite.h \ |
| 471 | $(SRC)/dispextern.h \ | 504 | $(SRC)/dispextern.h \ |
| @@ -479,6 +512,7 @@ $(BLD)/data.$(O) : \ | |||
| 479 | $(EMACS_ROOT)/src/m/intel386.h \ | 512 | $(EMACS_ROOT)/src/m/intel386.h \ |
| 480 | $(EMACS_ROOT)/src/config.h \ | 513 | $(EMACS_ROOT)/src/config.h \ |
| 481 | $(SRC)/buffer.h \ | 514 | $(SRC)/buffer.h \ |
| 515 | $(SRC)/character.h \ | ||
| 482 | $(SRC)/charset.h \ | 516 | $(SRC)/charset.h \ |
| 483 | $(SRC)/frame.h \ | 517 | $(SRC)/frame.h \ |
| 484 | $(SRC)/keyboard.h \ | 518 | $(SRC)/keyboard.h \ |
| @@ -492,6 +526,7 @@ $(BLD)/dired.$(O) : \ | |||
| 492 | $(EMACS_ROOT)/src/config.h \ | 526 | $(EMACS_ROOT)/src/config.h \ |
| 493 | $(SRC)/buffer.h \ | 527 | $(SRC)/buffer.h \ |
| 494 | $(SRC)/ccl.h \ | 528 | $(SRC)/ccl.h \ |
| 529 | $(SRC)/character.h \ | ||
| 495 | $(SRC)/charset.h \ | 530 | $(SRC)/charset.h \ |
| 496 | $(SRC)/coding.h \ | 531 | $(SRC)/coding.h \ |
| 497 | $(SRC)/commands.h \ | 532 | $(SRC)/commands.h \ |
| @@ -509,6 +544,7 @@ $(BLD)/dispnew.$(O) : \ | |||
| 509 | $(SRC)/atimer.h \ | 544 | $(SRC)/atimer.h \ |
| 510 | $(SRC)/blockinput.h \ | 545 | $(SRC)/blockinput.h \ |
| 511 | $(SRC)/buffer.h \ | 546 | $(SRC)/buffer.h \ |
| 547 | $(SRC)/character.h \ | ||
| 512 | $(SRC)/charset.h \ | 548 | $(SRC)/charset.h \ |
| 513 | $(SRC)/cm.h \ | 549 | $(SRC)/cm.h \ |
| 514 | $(SRC)/commands.h \ | 550 | $(SRC)/commands.h \ |
| @@ -537,6 +573,7 @@ $(BLD)/doc.$(O) : \ | |||
| 537 | $(EMACS_ROOT)/src/config.h \ | 573 | $(EMACS_ROOT)/src/config.h \ |
| 538 | $(EMACS_ROOT)/nt/inc/sys/file.h \ | 574 | $(EMACS_ROOT)/nt/inc/sys/file.h \ |
| 539 | $(SRC)/buffer.h \ | 575 | $(SRC)/buffer.h \ |
| 576 | $(SRC)/character.h \ | ||
| 540 | $(SRC)/charset.h \ | 577 | $(SRC)/charset.h \ |
| 541 | $(SRC)/keyboard.h \ | 578 | $(SRC)/keyboard.h \ |
| 542 | $(SRC)/keymap.h | 579 | $(SRC)/keymap.h |
| @@ -546,6 +583,7 @@ $(BLD)/doprnt.$(O) : \ | |||
| 546 | $(EMACS_ROOT)/src/s/ms-w32.h \ | 583 | $(EMACS_ROOT)/src/s/ms-w32.h \ |
| 547 | $(EMACS_ROOT)/src/m/intel386.h \ | 584 | $(EMACS_ROOT)/src/m/intel386.h \ |
| 548 | $(EMACS_ROOT)/src/config.h \ | 585 | $(EMACS_ROOT)/src/config.h \ |
| 586 | $(SRC)/character.h \ | ||
| 549 | $(SRC)/charset.c | 587 | $(SRC)/charset.c |
| 550 | 588 | ||
| 551 | $(BLD)/editfns.$(O) : \ | 589 | $(BLD)/editfns.$(O) : \ |
| @@ -556,6 +594,7 @@ $(BLD)/editfns.$(O) : \ | |||
| 556 | $(EMACS_ROOT)/nt/inc/pwd.h \ | 594 | $(EMACS_ROOT)/nt/inc/pwd.h \ |
| 557 | $(SRC)/buffer.h \ | 595 | $(SRC)/buffer.h \ |
| 558 | $(SRC)/ccl.h \ | 596 | $(SRC)/ccl.h \ |
| 597 | $(SRC)/character.h \ | ||
| 559 | $(SRC)/charset.h \ | 598 | $(SRC)/charset.h \ |
| 560 | $(SRC)/coding.h \ | 599 | $(SRC)/coding.h \ |
| 561 | $(SRC)/composite.h \ | 600 | $(SRC)/composite.h \ |
| @@ -616,6 +655,7 @@ $(BLD)/fileio.$(O) : \ | |||
| 616 | $(EMACS_ROOT)/nt/inc/sys/file.h \ | 655 | $(EMACS_ROOT)/nt/inc/sys/file.h \ |
| 617 | $(SRC)/buffer.h \ | 656 | $(SRC)/buffer.h \ |
| 618 | $(SRC)/ccl.h \ | 657 | $(SRC)/ccl.h \ |
| 658 | $(SRC)/character.h \ | ||
| 619 | $(SRC)/charset.h \ | 659 | $(SRC)/charset.h \ |
| 620 | $(SRC)/coding.h \ | 660 | $(SRC)/coding.h \ |
| 621 | $(SRC)/commands.h \ | 661 | $(SRC)/commands.h \ |
| @@ -637,6 +677,7 @@ $(BLD)/filelock.$(O) : \ | |||
| 637 | $(EMACS_ROOT)/src/epaths.h \ | 677 | $(EMACS_ROOT)/src/epaths.h \ |
| 638 | $(SRC)/buffer.h \ | 678 | $(SRC)/buffer.h \ |
| 639 | $(SRC)/ccl.h \ | 679 | $(SRC)/ccl.h \ |
| 680 | $(SRC)/character.h \ | ||
| 640 | $(SRC)/charset.h \ | 681 | $(SRC)/charset.h \ |
| 641 | $(SRC)/coding.h \ | 682 | $(SRC)/coding.h \ |
| 642 | $(SRC)/systime.h | 683 | $(SRC)/systime.h |
| @@ -672,6 +713,7 @@ $(BLD)/fns.$(O) : \ | |||
| 672 | $(SRC)/blockinput.h \ | 713 | $(SRC)/blockinput.h \ |
| 673 | $(SRC)/buffer.h \ | 714 | $(SRC)/buffer.h \ |
| 674 | $(SRC)/ccl.h \ | 715 | $(SRC)/ccl.h \ |
| 716 | $(SRC)/character.h \ | ||
| 675 | $(SRC)/charset.h \ | 717 | $(SRC)/charset.h \ |
| 676 | $(SRC)/coding.h \ | 718 | $(SRC)/coding.h \ |
| 677 | $(SRC)/commands.h \ | 719 | $(SRC)/commands.h \ |
| @@ -694,6 +736,7 @@ $(BLD)/fontset.$(O) : \ | |||
| 694 | $(EMACS_ROOT)/src/config.h \ | 736 | $(EMACS_ROOT)/src/config.h \ |
| 695 | $(SRC)/buffer.h \ | 737 | $(SRC)/buffer.h \ |
| 696 | $(SRC)/ccl.h \ | 738 | $(SRC)/ccl.h \ |
| 739 | $(SRC)/character.h \ | ||
| 697 | $(SRC)/charset.h \ | 740 | $(SRC)/charset.h \ |
| 698 | $(SRC)/dispextern.h \ | 741 | $(SRC)/dispextern.h \ |
| 699 | $(SRC)/fontset.h \ | 742 | $(SRC)/fontset.h \ |
| @@ -711,6 +754,7 @@ $(BLD)/frame.$(O) : \ | |||
| 711 | $(SRC)/atimer.h \ | 754 | $(SRC)/atimer.h \ |
| 712 | $(SRC)/blockinput.h \ | 755 | $(SRC)/blockinput.h \ |
| 713 | $(SRC)/buffer.h \ | 756 | $(SRC)/buffer.h \ |
| 757 | $(SRC)/character.h \ | ||
| 714 | $(SRC)/charset.h \ | 758 | $(SRC)/charset.h \ |
| 715 | $(SRC)/commands.h \ | 759 | $(SRC)/commands.h \ |
| 716 | $(SRC)/dispextern.h \ | 760 | $(SRC)/dispextern.h \ |
| @@ -772,6 +816,7 @@ $(BLD)/indent.$(O) : \ | |||
| 772 | $(EMACS_ROOT)/src/config.h \ | 816 | $(EMACS_ROOT)/src/config.h \ |
| 773 | $(SRC)/buffer.h \ | 817 | $(SRC)/buffer.h \ |
| 774 | $(SRC)/category.h \ | 818 | $(SRC)/category.h \ |
| 819 | $(SRC)/character.h \ | ||
| 775 | $(SRC)/charset.h \ | 820 | $(SRC)/charset.h \ |
| 776 | $(SRC)/composite.h \ | 821 | $(SRC)/composite.h \ |
| 777 | $(SRC)/dispextern.h \ | 822 | $(SRC)/dispextern.h \ |
| @@ -795,6 +840,7 @@ $(BLD)/insdel.$(O) : \ | |||
| 795 | $(SRC)/atimer.h \ | 840 | $(SRC)/atimer.h \ |
| 796 | $(SRC)/blockinput.h \ | 841 | $(SRC)/blockinput.h \ |
| 797 | $(SRC)/buffer.h \ | 842 | $(SRC)/buffer.h \ |
| 843 | $(SRC)/character.h \ | ||
| 798 | $(SRC)/charset.h \ | 844 | $(SRC)/charset.h \ |
| 799 | $(SRC)/composite.h \ | 845 | $(SRC)/composite.h \ |
| 800 | $(SRC)/dispextern.h \ | 846 | $(SRC)/dispextern.h \ |
| @@ -830,6 +876,7 @@ $(BLD)/keyboard.$(O) : \ | |||
| 830 | $(SRC)/atimer.h \ | 876 | $(SRC)/atimer.h \ |
| 831 | $(SRC)/blockinput.h \ | 877 | $(SRC)/blockinput.h \ |
| 832 | $(SRC)/buffer.h \ | 878 | $(SRC)/buffer.h \ |
| 879 | $(SRC)/character.h \ | ||
| 833 | $(SRC)/charset.h \ | 880 | $(SRC)/charset.h \ |
| 834 | $(SRC)/commands.h \ | 881 | $(SRC)/commands.h \ |
| 835 | $(SRC)/composite.h \ | 882 | $(SRC)/composite.h \ |
| @@ -861,6 +908,7 @@ $(BLD)/keymap.$(O) : \ | |||
| 861 | $(SRC)/atimer.h \ | 908 | $(SRC)/atimer.h \ |
| 862 | $(SRC)/blockinput.h \ | 909 | $(SRC)/blockinput.h \ |
| 863 | $(SRC)/buffer.h \ | 910 | $(SRC)/buffer.h \ |
| 911 | $(SRC)/character.h \ | ||
| 864 | $(SRC)/charset.h \ | 912 | $(SRC)/charset.h \ |
| 865 | $(SRC)/commands.h \ | 913 | $(SRC)/commands.h \ |
| 866 | $(SRC)/composite.h \ | 914 | $(SRC)/composite.h \ |
| @@ -889,6 +937,7 @@ $(BLD)/lread.$(O) : \ | |||
| 889 | $(EMACS_ROOT)/src/epaths.h \ | 937 | $(EMACS_ROOT)/src/epaths.h \ |
| 890 | $(SRC)/buffer.h \ | 938 | $(SRC)/buffer.h \ |
| 891 | $(SRC)/ccl.h \ | 939 | $(SRC)/ccl.h \ |
| 940 | $(SRC)/character.h \ | ||
| 892 | $(SRC)/charset.h \ | 941 | $(SRC)/charset.h \ |
| 893 | $(SRC)/coding.h \ | 942 | $(SRC)/coding.h \ |
| 894 | $(SRC)/commands.h \ | 943 | $(SRC)/commands.h \ |
| @@ -920,6 +969,7 @@ $(BLD)/marker.$(O) : \ | |||
| 920 | $(EMACS_ROOT)/src/m/intel386.h \ | 969 | $(EMACS_ROOT)/src/m/intel386.h \ |
| 921 | $(EMACS_ROOT)/src/config.h \ | 970 | $(EMACS_ROOT)/src/config.h \ |
| 922 | $(SRC)/buffer.h \ | 971 | $(SRC)/buffer.h \ |
| 972 | $(SRC)/character.h \ | ||
| 923 | $(SRC)/charset.h | 973 | $(SRC)/charset.h |
| 924 | 974 | ||
| 925 | $(BLD)/md5.$(O) : \ | 975 | $(BLD)/md5.$(O) : \ |
| @@ -932,6 +982,7 @@ $(BLD)/minibuf.$(O) : \ | |||
| 932 | $(EMACS_ROOT)/src/m/intel386.h \ | 982 | $(EMACS_ROOT)/src/m/intel386.h \ |
| 933 | $(EMACS_ROOT)/src/config.h \ | 983 | $(EMACS_ROOT)/src/config.h \ |
| 934 | $(SRC)/buffer.h \ | 984 | $(SRC)/buffer.h \ |
| 985 | $(SRC)/character.h \ | ||
| 935 | $(SRC)/charset.h \ | 986 | $(SRC)/charset.h \ |
| 936 | $(SRC)/commands.h \ | 987 | $(SRC)/commands.h \ |
| 937 | $(SRC)/composite.h \ | 988 | $(SRC)/composite.h \ |
| @@ -999,6 +1050,7 @@ $(BLD)/w32console.$(O) : \ | |||
| 999 | $(SRC)/s/ms-w32.h \ | 1050 | $(SRC)/s/ms-w32.h \ |
| 1000 | $(SRC)/m/intel386.h \ | 1051 | $(SRC)/m/intel386.h \ |
| 1001 | $(SRC)/ccl.h \ | 1052 | $(SRC)/ccl.h \ |
| 1053 | $(SRC)/character.h \ | ||
| 1002 | $(SRC)/charset.h \ | 1054 | $(SRC)/charset.h \ |
| 1003 | $(SRC)/coding.h \ | 1055 | $(SRC)/coding.h \ |
| 1004 | $(SRC)/config.h \ | 1056 | $(SRC)/config.h \ |
| @@ -1016,6 +1068,7 @@ $(BLD)/print.$(O) : \ | |||
| 1016 | $(EMACS_ROOT)/src/m/intel386.h \ | 1068 | $(EMACS_ROOT)/src/m/intel386.h \ |
| 1017 | $(EMACS_ROOT)/src/config.h \ | 1069 | $(EMACS_ROOT)/src/config.h \ |
| 1018 | $(SRC)/buffer.h \ | 1070 | $(SRC)/buffer.h \ |
| 1071 | $(SRC)/character.h \ | ||
| 1019 | $(SRC)/charset.h \ | 1072 | $(SRC)/charset.h \ |
| 1020 | $(SRC)/composite.h \ | 1073 | $(SRC)/composite.h \ |
| 1021 | $(SRC)/dispextern.h \ | 1074 | $(SRC)/dispextern.h \ |
| @@ -1039,6 +1092,7 @@ $(BLD)/process.$(O) : \ | |||
| 1039 | $(SRC)/blockinput.h \ | 1092 | $(SRC)/blockinput.h \ |
| 1040 | $(SRC)/buffer.h \ | 1093 | $(SRC)/buffer.h \ |
| 1041 | $(SRC)/ccl.h \ | 1094 | $(SRC)/ccl.h \ |
| 1095 | $(SRC)/character.h \ | ||
| 1042 | $(SRC)/charset.h \ | 1096 | $(SRC)/charset.h \ |
| 1043 | $(SRC)/coding.h \ | 1097 | $(SRC)/coding.h \ |
| 1044 | $(SRC)/commands.h \ | 1098 | $(SRC)/commands.h \ |
| @@ -1078,6 +1132,7 @@ $(BLD)/regex.$(O) : \ | |||
| 1078 | $(SRC)/m/intel386.h \ | 1132 | $(SRC)/m/intel386.h \ |
| 1079 | $(SRC)/buffer.h \ | 1133 | $(SRC)/buffer.h \ |
| 1080 | $(SRC)/category.h \ | 1134 | $(SRC)/category.h \ |
| 1135 | $(SRC)/character.h \ | ||
| 1081 | $(SRC)/charset.h \ | 1136 | $(SRC)/charset.h \ |
| 1082 | $(SRC)/config.h \ | 1137 | $(SRC)/config.h \ |
| 1083 | $(SRC)/regex.h \ | 1138 | $(SRC)/regex.h \ |
| @@ -1113,6 +1168,7 @@ $(BLD)/search.$(O) : \ | |||
| 1113 | $(SRC)/blockinput.h \ | 1168 | $(SRC)/blockinput.h \ |
| 1114 | $(SRC)/buffer.h \ | 1169 | $(SRC)/buffer.h \ |
| 1115 | $(SRC)/category.h \ | 1170 | $(SRC)/category.h \ |
| 1171 | $(SRC)/character.h \ | ||
| 1116 | $(SRC)/charset.h \ | 1172 | $(SRC)/charset.h \ |
| 1117 | $(SRC)/commands.h \ | 1173 | $(SRC)/commands.h \ |
| 1118 | $(SRC)/composite.h \ | 1174 | $(SRC)/composite.h \ |
| @@ -1145,6 +1201,7 @@ $(BLD)/syntax.$(O) : \ | |||
| 1145 | $(EMACS_ROOT)/src/config.h \ | 1201 | $(EMACS_ROOT)/src/config.h \ |
| 1146 | $(SRC)/buffer.h \ | 1202 | $(SRC)/buffer.h \ |
| 1147 | $(SRC)/category.h \ | 1203 | $(SRC)/category.h \ |
| 1204 | $(SRC)/character.h \ | ||
| 1148 | $(SRC)/charset.h \ | 1205 | $(SRC)/charset.h \ |
| 1149 | $(SRC)/commands.h \ | 1206 | $(SRC)/commands.h \ |
| 1150 | $(SRC)/composite.h \ | 1207 | $(SRC)/composite.h \ |
| @@ -1189,6 +1246,7 @@ $(BLD)/term.$(O) : \ | |||
| 1189 | $(EMACS_ROOT)/src/m/intel386.h \ | 1246 | $(EMACS_ROOT)/src/m/intel386.h \ |
| 1190 | $(EMACS_ROOT)/src/config.h \ | 1247 | $(EMACS_ROOT)/src/config.h \ |
| 1191 | $(SRC)/ccl.h \ | 1248 | $(SRC)/ccl.h \ |
| 1249 | $(SRC)/character.h \ | ||
| 1192 | $(SRC)/charset.h \ | 1250 | $(SRC)/charset.h \ |
| 1193 | $(SRC)/cm.h \ | 1251 | $(SRC)/cm.h \ |
| 1194 | $(SRC)/coding.h \ | 1252 | $(SRC)/coding.h \ |
| @@ -1285,6 +1343,7 @@ $(BLD)/xdisp.$(O) : \ | |||
| 1285 | $(SRC)/blockinput.h \ | 1343 | $(SRC)/blockinput.h \ |
| 1286 | $(SRC)/buffer.h \ | 1344 | $(SRC)/buffer.h \ |
| 1287 | $(SRC)/ccl.h \ | 1345 | $(SRC)/ccl.h \ |
| 1346 | $(SRC)/character.h \ | ||
| 1288 | $(SRC)/charset.h \ | 1347 | $(SRC)/charset.h \ |
| 1289 | $(SRC)/coding.h \ | 1348 | $(SRC)/coding.h \ |
| 1290 | $(SRC)/commands.h \ | 1349 | $(SRC)/commands.h \ |
| @@ -1316,6 +1375,7 @@ $(BLD)/xfaces.$(O): \ | |||
| 1316 | $(SRC)/atimer.h \ | 1375 | $(SRC)/atimer.h \ |
| 1317 | $(SRC)/blockinput.h \ | 1376 | $(SRC)/blockinput.h \ |
| 1318 | $(SRC)/buffer.h \ | 1377 | $(SRC)/buffer.h \ |
| 1378 | $(SRC)/character.h \ | ||
| 1319 | $(SRC)/charset.h \ | 1379 | $(SRC)/charset.h \ |
| 1320 | $(SRC)/composite.h \ | 1380 | $(SRC)/composite.h \ |
| 1321 | $(SRC)/dispextern.h \ | 1381 | $(SRC)/dispextern.h \ |
| @@ -1338,6 +1398,7 @@ $(BLD)/w32fns.$(O): \ | |||
| 1338 | $(SRC)/blockinput.h \ | 1398 | $(SRC)/blockinput.h \ |
| 1339 | $(SRC)/buffer.h \ | 1399 | $(SRC)/buffer.h \ |
| 1340 | $(SRC)/ccl.h \ | 1400 | $(SRC)/ccl.h \ |
| 1401 | $(SRC)/character.h \ | ||
| 1341 | $(SRC)/charset.h \ | 1402 | $(SRC)/charset.h \ |
| 1342 | $(SRC)/coding.h \ | 1403 | $(SRC)/coding.h \ |
| 1343 | $(SRC)/composite.h \ | 1404 | $(SRC)/composite.h \ |
| @@ -1363,6 +1424,7 @@ $(BLD)/w32menu.$(O): \ | |||
| 1363 | $(SRC)/atimer.h \ | 1424 | $(SRC)/atimer.h \ |
| 1364 | $(SRC)/blockinput.h \ | 1425 | $(SRC)/blockinput.h \ |
| 1365 | $(SRC)/buffer.h \ | 1426 | $(SRC)/buffer.h \ |
| 1427 | $(SRC)/character.h \ | ||
| 1366 | $(SRC)/charset.h \ | 1428 | $(SRC)/charset.h \ |
| 1367 | $(SRC)/coding.h \ | 1429 | $(SRC)/coding.h \ |
| 1368 | $(SRC)/dispextern.h \ | 1430 | $(SRC)/dispextern.h \ |
| @@ -1385,6 +1447,7 @@ $(BLD)/w32term.$(O): \ | |||
| 1385 | $(SRC)/blockinput.h \ | 1447 | $(SRC)/blockinput.h \ |
| 1386 | $(SRC)/buffer.h \ | 1448 | $(SRC)/buffer.h \ |
| 1387 | $(SRC)/ccl.h \ | 1449 | $(SRC)/ccl.h \ |
| 1450 | $(SRC)/character.h \ | ||
| 1388 | $(SRC)/charset.h \ | 1451 | $(SRC)/charset.h \ |
| 1389 | $(SRC)/coding.h \ | 1452 | $(SRC)/coding.h \ |
| 1390 | $(SRC)/composite.h \ | 1453 | $(SRC)/composite.h \ |
| @@ -1416,6 +1479,7 @@ $(BLD)/w32select.$(O): \ | |||
| 1416 | $(SRC)/blockinput.h \ | 1479 | $(SRC)/blockinput.h \ |
| 1417 | $(SRC)/buffer.h \ | 1480 | $(SRC)/buffer.h \ |
| 1418 | $(SRC)/ccl.h \ | 1481 | $(SRC)/ccl.h \ |
| 1482 | $(SRC)/character.h \ | ||
| 1419 | $(SRC)/charset.h \ | 1483 | $(SRC)/charset.h \ |
| 1420 | $(SRC)/coding.h \ | 1484 | $(SRC)/coding.h \ |
| 1421 | $(SRC)/composite.h \ | 1485 | $(SRC)/composite.h \ |
| @@ -1446,6 +1510,7 @@ $(BLD)/w32xfns.$(O): \ | |||
| 1446 | $(EMACS_ROOT)/src/config.h \ | 1510 | $(EMACS_ROOT)/src/config.h \ |
| 1447 | $(SRC)/atimer.h \ | 1511 | $(SRC)/atimer.h \ |
| 1448 | $(SRC)/blockinput.h \ | 1512 | $(SRC)/blockinput.h \ |
| 1513 | $(SRC)/character.h \ | ||
| 1449 | $(SRC)/charset.h \ | 1514 | $(SRC)/charset.h \ |
| 1450 | $(SRC)/fontset.h \ | 1515 | $(SRC)/fontset.h \ |
| 1451 | $(SRC)/frame.h \ | 1516 | $(SRC)/frame.h \ |
| @@ -1462,6 +1527,7 @@ $(BLD)/w32bdf.$(O): \ | |||
| 1462 | $(EMACS_ROOT)/src/config.h \ | 1527 | $(EMACS_ROOT)/src/config.h \ |
| 1463 | $(SRC)/atimer.h \ | 1528 | $(SRC)/atimer.h \ |
| 1464 | $(SRC)/blockinput.h \ | 1529 | $(SRC)/blockinput.h \ |
| 1530 | $(SRC)/character.h \ | ||
| 1465 | $(SRC)/charset.h \ | 1531 | $(SRC)/charset.h \ |
| 1466 | $(SRC)/dispextern.h \ | 1532 | $(SRC)/dispextern.h \ |
| 1467 | $(SRC)/fontset.h \ | 1533 | $(SRC)/fontset.h \ |