diff options
| author | Eli Zaretskii | 2001-09-27 11:05:06 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-09-27 11:05:06 +0000 |
| commit | f7d5d963205e9dc19e4253e16dcc557b5e61ee62 (patch) | |
| tree | 4d625f7dcbda315506ad1630d00d34421785f6e2 /src | |
| parent | e04233aacfbf1576bfcb487f2b9edd9cfec64cdd (diff) | |
| download | emacs-f7d5d963205e9dc19e4253e16dcc557b5e61ee62.tar.gz emacs-f7d5d963205e9dc19e4253e16dcc557b5e61ee62.zip | |
(shortlisp): Resync with loadup.el: add backquote, utf-8, menu-bar,
and latin-N.
(SOME_MACHINE_LISP): Remove menu-bar, since it's loaded unconditionally now.
(lisp): Add latin-N, since they are preloaded.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 8 | ||||
| -rw-r--r-- | src/Makefile.in | 19 |
2 files changed, 26 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 01640cc58be..ef8f02d95fc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2001-09-27 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * Makefile.in (shortlisp): Resync with loadup.el: add backquote, | ||
| 4 | utf-8, menu-bar, and latin-N. | ||
| 5 | (SOME_MACHINE_LISP): Remove menu-bar, since it's loaded | ||
| 6 | unconditionally now. | ||
| 7 | (lisp): Add latin-N, since they are preloaded. | ||
| 8 | |||
| 1 | 2001-09-27 Gerd Moellmann <gerd@gnu.org> | 9 | 2001-09-27 Gerd Moellmann <gerd@gnu.org> |
| 2 | 10 | ||
| 3 | * xterm.c (x_draw_relief_rect): Draw bottom relief 1 pixel more | 11 | * xterm.c (x_draw_relief_rect): Draw bottom relief 1 pixel more |
diff --git a/src/Makefile.in b/src/Makefile.in index 50fbd7bc065..50fc86c9d44 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -674,6 +674,13 @@ lisp= \ | |||
| 674 | ${lispsource}international/mule-cmds.elc \ | 674 | ${lispsource}international/mule-cmds.elc \ |
| 675 | ${lispsource}international/characters.elc \ | 675 | ${lispsource}international/characters.elc \ |
| 676 | ${lispsource}international/utf-8.elc \ | 676 | ${lispsource}international/utf-8.elc \ |
| 677 | ${lispsource}international/latin-1.el \ | ||
| 678 | ${lispsource}international/latin-2.el \ | ||
| 679 | ${lispsource}international/latin-3.el \ | ||
| 680 | ${lispsource}international/latin-4.el \ | ||
| 681 | ${lispsource}international/latin-5.el \ | ||
| 682 | ${lispsource}international/latin-8.el \ | ||
| 683 | ${lispsource}international/latin-9.el \ | ||
| 677 | ${lispsource}case-table.elc \ | 684 | ${lispsource}case-table.elc \ |
| 678 | ${lispsource}language/chinese.elc \ | 685 | ${lispsource}language/chinese.elc \ |
| 679 | ${lispsource}language/cyrillic.elc \ | 686 | ${lispsource}language/cyrillic.elc \ |
| @@ -724,6 +731,7 @@ shortlisp= \ | |||
| 724 | ../lisp/byte-run.elc \ | 731 | ../lisp/byte-run.elc \ |
| 725 | ../lisp/cus-start.el \ | 732 | ../lisp/cus-start.el \ |
| 726 | ../lisp/custom.elc \ | 733 | ../lisp/custom.elc \ |
| 734 | ../lisp/emacs-lisp/backquote.elc \ | ||
| 727 | ../lisp/emacs-lisp/lisp-mode.elc \ | 735 | ../lisp/emacs-lisp/lisp-mode.elc \ |
| 728 | ../lisp/emacs-lisp/lisp.elc \ | 736 | ../lisp/emacs-lisp/lisp.elc \ |
| 729 | ../lisp/facemenu.elc \ | 737 | ../lisp/facemenu.elc \ |
| @@ -744,6 +752,14 @@ shortlisp= \ | |||
| 744 | ../lisp/international/mule-conf.el \ | 752 | ../lisp/international/mule-conf.el \ |
| 745 | ../lisp/international/mule-cmds.elc \ | 753 | ../lisp/international/mule-cmds.elc \ |
| 746 | ../lisp/international/characters.elc \ | 754 | ../lisp/international/characters.elc \ |
| 755 | ../lisp/international/utf-8.elc \ | ||
| 756 | ../lisp/international/latin-1.el \ | ||
| 757 | ../lisp/international/latin-2.el \ | ||
| 758 | ../lisp/international/latin-3.el \ | ||
| 759 | ../lisp/international/latin-4.el \ | ||
| 760 | ../lisp/international/latin-5.el \ | ||
| 761 | ../lisp/international/latin-8.el \ | ||
| 762 | ../lisp/international/latin-9.el \ | ||
| 747 | ../lisp/case-table.elc \ | 763 | ../lisp/case-table.elc \ |
| 748 | ../lisp/language/chinese.elc \ | 764 | ../lisp/language/chinese.elc \ |
| 749 | ../lisp/language/cyrillic.elc \ | 765 | ../lisp/language/cyrillic.elc \ |
| @@ -764,6 +780,7 @@ shortlisp= \ | |||
| 764 | ../lisp/language/tibetan.elc \ | 780 | ../lisp/language/tibetan.elc \ |
| 765 | ../lisp/language/vietnamese.elc \ | 781 | ../lisp/language/vietnamese.elc \ |
| 766 | ../lisp/language/misc-lang.elc \ | 782 | ../lisp/language/misc-lang.elc \ |
| 783 | ../lisp/menu-bar.elc \ | ||
| 767 | ../lisp/paths.el \ | 784 | ../lisp/paths.el \ |
| 768 | ../lisp/register.elc \ | 785 | ../lisp/register.elc \ |
| 769 | ../lisp/replace.elc \ | 786 | ../lisp/replace.elc \ |
| @@ -786,7 +803,7 @@ shortlisp= \ | |||
| 786 | We use ../lisp/ to start the file names | 803 | We use ../lisp/ to start the file names |
| 787 | to reduce the size of the argument list for make-docfile | 804 | to reduce the size of the argument list for make-docfile |
| 788 | for the sake of systems which can't handle large ones. */ | 805 | for the sake of systems which can't handle large ones. */ |
| 789 | SOME_MACHINE_LISP = ${dotdot}/lisp/menu-bar.elc ${dotdot}/lisp/mouse.elc \ | 806 | SOME_MACHINE_LISP = ${dotdot}/lisp/mouse.elc \ |
| 790 | ${dotdot}/lisp/select.elc ${dotdot}/lisp/scroll-bar.elc \ | 807 | ${dotdot}/lisp/select.elc ${dotdot}/lisp/scroll-bar.elc \ |
| 791 | ${dotdot}/lisp/vmsproc.elc ${dotdot}/lisp/vms-patch.elc \ | 808 | ${dotdot}/lisp/vmsproc.elc ${dotdot}/lisp/vms-patch.elc \ |
| 792 | ${dotdot}/lisp/ls-lisp.elc ${dotdot}/lisp/dos-fns.elc \ | 809 | ${dotdot}/lisp/ls-lisp.elc ${dotdot}/lisp/dos-fns.elc \ |