aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2004-03-22 14:10:23 +0000
committerStefan Monnier2004-03-22 14:10:23 +0000
commit4a61faec0b340c349bedf26bc9a826e821fdf6a4 (patch)
tree8e47b59638f0d644f00055f5cd6abaed4e94588f
parent8f7ea68706c852de13e39b6fd0caf1d5b05c3854 (diff)
downloademacs-4a61faec0b340c349bedf26bc9a826e821fdf6a4.tar.gz
emacs-4a61faec0b340c349bedf26bc9a826e821fdf6a4.zip
Add local variables to prevent byte-compiling.
-rw-r--r--ChangeLog6
-rwxr-xr-xupdate-subdirs8
2 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 18d83fd50e7..b50a9a5bd5d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12004-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * update-subdirs: Add local variables to prevent byte-compiling.
4
12004-03-21 Dave Love <fx@gnu.org> 52004-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
432004-01-06 Eric Hanchrow <offby1@blarg.net> (tiny change) 472004-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
472003-12-30 Eli Zaretskii <eliz@elta.co.il> 512003-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
46fi 50fi
47 51
48# arch-tag: 56ebcf1b-5c30-4934-b0b4-72d374064704 52# arch-tag: 56ebcf1b-5c30-4934-b0b4-72d374064704