emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r115271: * leim/leim-ext.el: Change method for getti


From: Glenn Morris
Subject: [Emacs-diffs] trunk r115271: * leim/leim-ext.el: Change method for getting comments in the output
Date: Thu, 28 Nov 2013 20:31:59 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115271
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2013-11-28 12:31:55 -0800
message:
  * 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.
modified:
  leim/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1629
  leim/Makefile.in               
makefile.in-20091113204419-o5vbwnq5f7feedwu-1200
  leim/leim-ext.el               leimext.el-20091113204419-o5vbwnq5f7feedwu-3067
=== modified file 'leim/ChangeLog'
--- a/leim/ChangeLog    2013-11-27 18:29:28 +0000
+++ b/leim/ChangeLog    2013-11-28 20:31:55 +0000
@@ -1,3 +1,9 @@
+2013-11-28  Glenn Morris  <address@hidden>
+
+       * 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  <address@hidden>
 
        * Makefile.in (bootstrap-clean): No need to delete .elc,

=== modified file 'leim/Makefile.in'
--- a/leim/Makefile.in  2013-11-27 18:29:28 +0000
+++ b/leim/Makefile.in  2013-11-28 20:31:55 +0000
@@ -132,7 +132,7 @@
        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

=== modified file 'leim/leim-ext.el'
--- a/leim/leim-ext.el  2013-11-27 06:15:06 +0000
+++ b/leim/leim-ext.el  2013-11-28 20:31:55 +0000
@@ -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.
-
- ;; Local Variables:
- ;; no-byte-compile: t
- ;; version-control: never
- ;; no-update-autoloads: t
- ;; End:
-
- ;;; leim-list.el ends here
+;; TODO?  Better to add leim-list-footer?
+
+;;inc Local Variables:
+;;inc no-byte-compile: t
+;;inc version-control: never
+;;inc no-update-autoloads: t
+;;inc End:
+
+;;;inc leim-list.el ends here
 
 ;;; leim-ext.el ends here


reply via email to

[Prev in Thread] Current Thread [Next in Thread]