diff options
| author | Juanma Barranquero | 2002-10-01 17:10:51 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-10-01 17:10:51 +0000 |
| commit | c45dbde8d652bbb0178f5bde4563c348d63e6c87 (patch) | |
| tree | f705de4cf1994290cd0c68d1d1d5d370596d7e76 /lisp | |
| parent | 0a10297a064822f10484f3c08d03f18b3fd5a3e4 (diff) | |
| download | emacs-c45dbde8d652bbb0178f5bde4563c348d63e6c87.tar.gz emacs-c45dbde8d652bbb0178f5bde4563c348d63e6c87.zip | |
Add "no-byte-compile: t" to subdirs.el.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/eshell/esh-module.el | 2 | ||||
| -rw-r--r-- | lisp/makefile.w32-in | 13 |
2 files changed, 8 insertions, 7 deletions
diff --git a/lisp/eshell/esh-module.el b/lisp/eshell/esh-module.el index 176c6b33eeb..a7a2a280c93 100644 --- a/lisp/eshell/esh-module.el +++ b/lisp/eshell/esh-module.el | |||
| @@ -44,7 +44,7 @@ customizing the variable `eshell-modules-list'." | |||
| 44 | (with-current-buffer | 44 | (with-current-buffer |
| 45 | (find-file-noselect (expand-file-name "esh-groups.el" directory)) | 45 | (find-file-noselect (expand-file-name "esh-groups.el" directory)) |
| 46 | (erase-buffer) | 46 | (erase-buffer) |
| 47 | (insert ";;; do not modify this file; it is auto-generated\n\n") | 47 | (insert ";;; do not modify this file; it is auto-generated -*- no-byte-compile: t -*-\n\n") |
| 48 | (let ((files (directory-files (or directory | 48 | (let ((files (directory-files (or directory |
| 49 | (car command-line-args-left)) | 49 | (car command-line-args-left)) |
| 50 | nil "\\`em-.*\\.el\\'"))) | 50 | nil "\\`em-.*\\.el\\'"))) |
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index 7583407f997..31c39737c99 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in | |||
| @@ -2,17 +2,17 @@ | |||
| 2 | # Copyright (c) 2000-2001 Free Software Foundation, Inc. | 2 | # Copyright (c) 2000-2001 Free Software Foundation, Inc. |
| 3 | # | 3 | # |
| 4 | # This file is part of GNU Emacs. | 4 | # This file is part of GNU Emacs. |
| 5 | # | 5 | # |
| 6 | # GNU Emacs is free software; you can redistribute it and/or modify | 6 | # GNU Emacs is free software; you can redistribute it and/or modify |
| 7 | # it under the terms of the GNU General Public License as published by | 7 | # it under the terms of the GNU General Public License as published by |
| 8 | # the Free Software Foundation; either version 2, or (at your option) | 8 | # the Free Software Foundation; either version 2, or (at your option) |
| 9 | # any later version. | 9 | # any later version. |
| 10 | # | 10 | # |
| 11 | # GNU Emacs is distributed in the hope that it will be useful, | 11 | # GNU Emacs is distributed in the hope that it will be useful, |
| 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | # GNU General Public License for more details. | 14 | # GNU General Public License for more details. |
| 15 | # | 15 | # |
| 16 | # You should have received a copy of the GNU General Public License | 16 | # You should have received a copy of the GNU General Public License |
| 17 | # along with GNU Emacs; see the file COPYING. If not, write to the | 17 | # along with GNU Emacs; see the file COPYING. If not, write to the |
| 18 | # Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 18 | # Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| @@ -197,7 +197,8 @@ subdirs.el: | |||
| 197 | update-subdirs: update-subdirs-$(SHELLTYPE) | 197 | update-subdirs: update-subdirs-$(SHELLTYPE) |
| 198 | 198 | ||
| 199 | update-subdirs-CMD: doit | 199 | update-subdirs-CMD: doit |
| 200 | echo ;; In load-path, after this directory should come> subdirs.el | 200 | echo ;; -*- no-byte-compile: t -*->subdirs.el |
| 201 | echo ;; In load-path, after this directory should come>> subdirs.el | ||
| 201 | echo ;; certain of its subdirectories. Here we specify them.>> subdirs.el | 202 | echo ;; certain of its subdirectories. Here we specify them.>> subdirs.el |
| 202 | echo (normal-top-level-add-to-load-path $(SQUOTE)(>> subdirs.el | 203 | echo (normal-top-level-add-to-load-path $(SQUOTE)(>> subdirs.el |
| 203 | @for %d in ($(WINS)) do if not (%d)==(term) echo "%d">> subdirs.el | 204 | @for %d in ($(WINS)) do if not (%d)==(term) echo "%d">> subdirs.el |
| @@ -292,7 +293,7 @@ compile-calc: compile-calc-$(SHELLTYPE) | |||
| 292 | compile-calc-CMD: | 293 | compile-calc-CMD: |
| 293 | for %f in ($(lisp)/calc/*.el) do $(emacs) -f batch-byte-compile %f | 294 | for %f in ($(lisp)/calc/*.el) do $(emacs) -f batch-byte-compile %f |
| 294 | 295 | ||
| 295 | compile-calc-SH: | 296 | compile-calc-SH: |
| 296 | for el in $(lisp)/calc/*.el; do \ | 297 | for el in $(lisp)/calc/*.el; do \ |
| 297 | echo Compiling $$el; \ | 298 | echo Compiling $$el; \ |
| 298 | $(emacs) -f batch-byte-compile $$el || exit 1; \ | 299 | $(emacs) -f batch-byte-compile $$el || exit 1; \ |
| @@ -367,6 +368,6 @@ install: | |||
| 367 | 368 | ||
| 368 | # | 369 | # |
| 369 | # Maintenance | 370 | # Maintenance |
| 370 | # | 371 | # |
| 371 | clean: | 372 | clean: |
| 372 | - $(DEL) *~ | 373 | - $(DEL) *~ |