diff options
| author | Stefan Monnier | 2004-03-22 14:10:23 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-03-22 14:10:23 +0000 |
| commit | 4a61faec0b340c349bedf26bc9a826e821fdf6a4 (patch) | |
| tree | 8e47b59638f0d644f00055f5cd6abaed4e94588f | |
| parent | 8f7ea68706c852de13e39b6fd0caf1d5b05c3854 (diff) | |
| download | emacs-4a61faec0b340c349bedf26bc9a826e821fdf6a4.tar.gz emacs-4a61faec0b340c349bedf26bc9a826e821fdf6a4.zip | |
Add local variables to prevent byte-compiling.
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rwxr-xr-x | update-subdirs | 8 |
2 files changed, 11 insertions, 3 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-03-22 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * update-subdirs: Add local variables to prevent byte-compiling. | ||
| 4 | |||
| 1 | 2004-03-21 Dave Love <fx@gnu.org> | 5 | 2004-03-21 Dave Love <fx@gnu.org> |
| 2 | 6 | ||
| 3 | * configure.in: Fix previous change. | 7 | * configure.in: Fix previous change. |
| @@ -42,7 +46,7 @@ | |||
| 42 | 46 | ||
| 43 | 2004-01-06 Eric Hanchrow <offby1@blarg.net> (tiny change) | 47 | 2004-01-06 Eric Hanchrow <offby1@blarg.net> (tiny change) |
| 44 | 48 | ||
| 45 | * make-dist (tempdir): Include cursors in nt/icons | 49 | * make-dist (tempdir): Include cursors in nt/icons. |
| 46 | 50 | ||
| 47 | 2003-12-30 Eli Zaretskii <eliz@elta.co.il> | 51 | 2003-12-30 Eli Zaretskii <eliz@elta.co.il> |
| 48 | 52 | ||
diff --git a/update-subdirs b/update-subdirs index a4d7b5db117..7ac5977d70f 100755 --- a/update-subdirs +++ b/update-subdirs | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | # Write into $1/subdirs.el a list of subdirs of directory $1. | 2 | # Write into $1/subdirs.el a list of subdirs of directory $1. |
| 3 | 3 | ||
| 4 | # Copyright (C) 1994, 1995, 1997, 1999, 2001 Free Software Foundation, Inc. | 4 | # Copyright (C) 1994,95,97,1999,2001,2004 Free Software Foundation, Inc. |
| 5 | # | 5 | # |
| 6 | # This file is part of GNU Emacs. | 6 | # This file is part of GNU Emacs. |
| 7 | # | 7 | # |
| @@ -42,7 +42,11 @@ else | |||
| 42 | echo ";; In load-path, after this directory should come | 42 | echo ";; In load-path, after this directory should come |
| 43 | ;; certain of its subdirectories. Here we specify them." >> subdirs.el | 43 | ;; certain of its subdirectories. Here we specify them." >> subdirs.el |
| 44 | 44 | ||
| 45 | echo "(normal-top-level-add-to-load-path '($subdirs))" >> subdirs.el | 45 | echo "(normal-top-level-add-to-load-path '($subdirs)) |
| 46 | ;; Local" "Variables: | ||
| 47 | ;; version-control: never | ||
| 48 | ;; no-byte-compile: t | ||
| 49 | ;; End:" >> subdirs.el | ||
| 46 | fi | 50 | fi |
| 47 | 51 | ||
| 48 | # arch-tag: 56ebcf1b-5c30-4934-b0b4-72d374064704 | 52 | # arch-tag: 56ebcf1b-5c30-4934-b0b4-72d374064704 |