emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/lisp ChangeLog Makefile.in


From: Glenn Morris
Subject: [Emacs-diffs] emacs/lisp ChangeLog Makefile.in
Date: Sun, 18 Oct 2009 00:34:51 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       09/10/18 00:34:50

Modified files:
        lisp           : ChangeLog Makefile.in 

Log message:
        (compile-last): Ensure GREP_OPTIONS is null before calling
        grep, so that binary files (eg international/uni-bidi.el) can match.
        Remove test for "UnicodeData" files, since it is hopefully unnecesary
        now, and in any case the file header format has changed.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16452&r2=1.16453
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/Makefile.in?cvsroot=emacs&r1=1.204&r2=1.205

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16452
retrieving revision 1.16453
diff -u -b -r1.16452 -r1.16453
--- ChangeLog   17 Oct 2009 22:43:13 -0000      1.16452
+++ ChangeLog   18 Oct 2009 00:34:47 -0000      1.16453
@@ -1,3 +1,10 @@
+2009-10-18  Glenn Morris  <address@hidden>
+
+       * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
+       grep, so that binary files (eg international/uni-bidi.el) can match.
+       Remove test for "UnicodeData" files, since it is hopefully unnecesary
+       now, and in any case the file header format has changed.
+
 2009-10-17  Glenn Morris  <address@hidden>
 
        * textmodes/flyspell.el (flyspell-large-region, flyspell-word)

Index: Makefile.in
===================================================================
RCS file: /sources/emacs/emacs/lisp/Makefile.in,v
retrieving revision 1.204
retrieving revision 1.205
diff -u -b -r1.204 -r1.205
--- Makefile.in 17 Oct 2009 14:28:48 -0000      1.204
+++ Makefile.in 18 Oct 2009 00:34:50 -0000      1.205
@@ -1505,15 +1505,13 @@
        $(MAKE) $(MFLAGS) compile EMACS=$(EMACS)
 
 ## In case any files are missing from ELCFILES.
-## Why is the UnicodeData check needed, when these files are no-byte-compile?
 compile-last:
        @wd=$(lisp); $(setwins); \
        els=`echo "$$wins " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.el 
|g'`; \
        for el in $$els; do \
          test -f $$el || continue; \
          test -f $${el}c && continue; \
-         grep 'no-byte-compile: t' $$el > /dev/null && continue; \
-         head -n 1 $$el | grep '^;; Automatically generated from 
UnicodeData.txt.' > /dev/null && continue; \
+         GREP_OPTIONS= grep 'no-byte-compile: t' $$el > /dev/null && continue; 
\
          sel=`echo $$el | sed "s|^$(lisp)|\\$$(lisp)|"`; \
          echo "Maintainer warning: $$sel missing from \$$ELCFILES?"; \
          echo "Compiling $$el"; \




reply via email to

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