]> code.delx.au - gnu-emacs/commitdiff
Add "no-byte-compile: t" to subdirs.el.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 1 Oct 2002 17:10:51 +0000 (17:10 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 1 Oct 2002 17:10:51 +0000 (17:10 +0000)
lisp/eshell/esh-module.el
lisp/makefile.w32-in
update-subdirs

index 176c6b33eeb289a4a71ee6488d44ea56990dd655..a7a2a280c93524329abd38c54e30f4a4f2cc547b 100644 (file)
@@ -44,7 +44,7 @@ customizing the variable `eshell-modules-list'."
   (with-current-buffer
       (find-file-noselect (expand-file-name "esh-groups.el" directory))
     (erase-buffer)
-    (insert ";;; do not modify this file; it is auto-generated\n\n")
+    (insert ";;; do not modify this file; it is auto-generated -*- no-byte-compile: t -*-\n\n")
     (let ((files (directory-files (or directory
                                      (car command-line-args-left))
                                  nil "\\`em-.*\\.el\\'")))
index 7583407f9971587c46463c492d14bf938b5ea08b..31c39737c990d3bfa669b3120daf0a5563626c16 100644 (file)
@@ -2,17 +2,17 @@
 #  Copyright (c) 2000-2001 Free Software Foundation, Inc.
 #
 #  This file is part of GNU Emacs.
-#  
+#
 #  GNU Emacs is free software; you can redistribute it and/or modify
 #  it under the terms of the GNU General Public License as published by
 #  the Free Software Foundation; either version 2, or (at your option)
 #  any later version.
-#  
+#
 #  GNU Emacs is distributed in the hope that it will be useful,
 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 #  GNU General Public License for more details.
-#  
+#
 #  You should have received a copy of the GNU General Public License
 #  along with GNU Emacs; see the file COPYING.  If not, write to the
 #  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
@@ -197,7 +197,8 @@ subdirs.el:
 update-subdirs: update-subdirs-$(SHELLTYPE)
 
 update-subdirs-CMD: doit
-       echo ;; In load-path, after this directory should come> subdirs.el
+       echo ;; -*- no-byte-compile: t -*->subdirs.el
+       echo ;; In load-path, after this directory should come>> subdirs.el
        echo ;; certain of its subdirectories.  Here we specify them.>> subdirs.el
        echo (normal-top-level-add-to-load-path $(SQUOTE)(>> subdirs.el
        @for %d in ($(WINS)) do if not (%d)==(term) echo "%d">> subdirs.el
@@ -292,7 +293,7 @@ compile-calc: compile-calc-$(SHELLTYPE)
 compile-calc-CMD:
        for %f in ($(lisp)/calc/*.el) do $(emacs) -f batch-byte-compile %f
 
-compile-calc-SH: 
+compile-calc-SH:
        for el in $(lisp)/calc/*.el; do \
          echo Compiling $$el; \
          $(emacs) -f batch-byte-compile $$el || exit 1; \
@@ -367,6 +368,6 @@ install:
 
 #
 # Maintenance
-# 
+#
 clean:
                - $(DEL) *~
index fa66a2b05dbd23f66232d5d9ba87bb5e720ed1a1..801b15003da7da1617ae9132dd9d9d755518c122 100755 (executable)
@@ -36,8 +36,11 @@ done
 if [ "x$subdirs" = x ]; then
   rm -f subdirs.el
 else
+
+  echo ";; -*- no-byte-compile: t -*-" > subdirs.el
+
   echo ";; In load-path, after this directory should come
-;; certain of its subdirectories.  Here we specify them." > subdirs.el
+;; certain of its subdirectories.  Here we specify them." >> subdirs.el
 
   echo "(normal-top-level-add-to-load-path '($subdirs))" >> subdirs.el
 fi