From 698c0f24f170025470f3dcda51c11290062d78c4 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Thu, 28 Nov 2013 12:31:55 -0800 Subject: * leim/leim-ext.el: Change method for getting comments in the output to one that does not fool lisp/compile-main's no-byte-compile test. * leim/Makefile.in (${leimdir}/leim-list.el): Adapt for this. --- leim/ChangeLog | 6 ++++++ leim/Makefile.in | 2 +- leim/leim-ext.el | 15 ++++++++------- 3 files changed, 15 insertions(+), 8 deletions(-) (limited to 'leim') diff --git a/leim/ChangeLog b/leim/ChangeLog index b5099b5a44..31b9c37690 100644 --- a/leim/ChangeLog +++ b/leim/ChangeLog @@ -1,3 +1,9 @@ +2013-11-28 Glenn Morris + + * Makefile.in (${leimdir}/leim-list.el): + * leim-ext.el: Change method for getting comments in the output + to one that does not fool lisp/compile-main's no-byte-compile test. + 2013-11-27 Glenn Morris * Makefile.in (bootstrap-clean): No need to delete .elc, diff --git a/leim/Makefile.in b/leim/Makefile.in index 9fe71ae6fe..4e067db344 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in @@ -132,7 +132,7 @@ ${leimdir}/leim-list.el: ${TIT_MISC} ${srcdir}/leim-ext.el rm -f $@ ${RUN_EMACS} -l international/quail \ --eval "(update-leim-list-file (unmsys--file-name \"${leimdir}\"))" - sed -n '/^[^;]/ p' < ${srcdir}/leim-ext.el >> $@ + sed -n -e '/^[^;]/p' -e 's/;inc/;/p' < ${srcdir}/leim-ext.el >> $@ ${leimdir}/ja-dic/ja-dic.el: $(srcdir)/SKK-DIC/SKK-JISYO.L @$(MKDIR_P) $(leimdir)/ja-dic diff --git a/leim/leim-ext.el b/leim/leim-ext.el index b5fc311886..0f92fd6c64 100644 --- a/leim/leim-ext.el +++ b/leim/leim-ext.el @@ -76,16 +76,17 @@ 'hangul390-input-method "Input method: korean-hangul390 (mode line indicator:한390)\n\nHangul 3-Bulsik 390 input method.") -;; Following lines are indented so that Makefile adds them to output. +;; Following lines are marked such that Makefile adds them to output. ;; leim-list-header adds "coding: utf-8"; we could move that here, ;; unless others are using that stuff to generate their own leim files. +;; TODO? Better to add leim-list-footer? - ;; Local Variables: - ;; no-byte-compile: t - ;; version-control: never - ;; no-update-autoloads: t - ;; End: +;;inc Local Variables: +;;inc no-byte-compile: t +;;inc version-control: never +;;inc no-update-autoloads: t +;;inc End: - ;;; leim-list.el ends here +;;;inc leim-list.el ends here ;;; leim-ext.el ends here -- cgit v1.2.3