From: Eli Zaretskii Date: Thu, 27 Sep 2001 11:05:06 +0000 (+0000) Subject: (shortlisp): Resync with loadup.el: add backquote, utf-8, menu-bar, X-Git-Tag: emacs-21.1~136 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f7d5d963205e9dc19e4253e16dcc557b5e61ee62;p=emacs.git (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. --- diff --git a/src/ChangeLog b/src/ChangeLog index 01640cc58be..ef8f02d95fc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,11 @@ +2001-09-27 Eli Zaretskii + + * Makefile.in (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. + 2001-09-27 Gerd Moellmann * 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= \ ${lispsource}international/mule-cmds.elc \ ${lispsource}international/characters.elc \ ${lispsource}international/utf-8.elc \ + ${lispsource}international/latin-1.el \ + ${lispsource}international/latin-2.el \ + ${lispsource}international/latin-3.el \ + ${lispsource}international/latin-4.el \ + ${lispsource}international/latin-5.el \ + ${lispsource}international/latin-8.el \ + ${lispsource}international/latin-9.el \ ${lispsource}case-table.elc \ ${lispsource}language/chinese.elc \ ${lispsource}language/cyrillic.elc \ @@ -724,6 +731,7 @@ shortlisp= \ ../lisp/byte-run.elc \ ../lisp/cus-start.el \ ../lisp/custom.elc \ + ../lisp/emacs-lisp/backquote.elc \ ../lisp/emacs-lisp/lisp-mode.elc \ ../lisp/emacs-lisp/lisp.elc \ ../lisp/facemenu.elc \ @@ -744,6 +752,14 @@ shortlisp= \ ../lisp/international/mule-conf.el \ ../lisp/international/mule-cmds.elc \ ../lisp/international/characters.elc \ + ../lisp/international/utf-8.elc \ + ../lisp/international/latin-1.el \ + ../lisp/international/latin-2.el \ + ../lisp/international/latin-3.el \ + ../lisp/international/latin-4.el \ + ../lisp/international/latin-5.el \ + ../lisp/international/latin-8.el \ + ../lisp/international/latin-9.el \ ../lisp/case-table.elc \ ../lisp/language/chinese.elc \ ../lisp/language/cyrillic.elc \ @@ -764,6 +780,7 @@ shortlisp= \ ../lisp/language/tibetan.elc \ ../lisp/language/vietnamese.elc \ ../lisp/language/misc-lang.elc \ + ../lisp/menu-bar.elc \ ../lisp/paths.el \ ../lisp/register.elc \ ../lisp/replace.elc \ @@ -786,7 +803,7 @@ shortlisp= \ We use ../lisp/ to start the file names to reduce the size of the argument list for make-docfile for the sake of systems which can't handle large ones. */ -SOME_MACHINE_LISP = ${dotdot}/lisp/menu-bar.elc ${dotdot}/lisp/mouse.elc \ +SOME_MACHINE_LISP = ${dotdot}/lisp/mouse.elc \ ${dotdot}/lisp/select.elc ${dotdot}/lisp/scroll-bar.elc \ ${dotdot}/lisp/vmsproc.elc ${dotdot}/lisp/vms-patch.elc \ ${dotdot}/lisp/ls-lisp.elc ${dotdot}/lisp/dos-fns.elc \