diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-10-01 17:10:51 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-10-01 17:10:51 +0000 |
commit | 332c98eb2bbeefd874b8cb0af5faad8b4afd4175 (patch) | |
tree | ad4f9e60aa2f949522b49803d172435f2859538b /update-subdirs | |
parent | 0aef3756c4d9a8470ced3eff71c7a178c626fd46 (diff) | |
download | emacs-332c98eb2bbeefd874b8cb0af5faad8b4afd4175.tar.gz |
Add "no-byte-compile: t" to subdirs.el.
Diffstat (limited to 'update-subdirs')
-rwxr-xr-x | update-subdirs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/update-subdirs b/update-subdirs index fa66a2b05db..801b15003da 100755 --- a/update-subdirs +++ b/update-subdirs @@ -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 |