Mercurial > emacs
comparison update-subdirs @ 86200:aa0de1ea4215
Atomically update subdirs.el.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Sat, 17 Nov 2007 12:02:23 +0000 |
parents | 02b636765d00 |
children | 107ccd98fa12 53108e6cea98 |
comparison
equal
deleted
inserted
replaced
86199:b938987c900a | 86200:aa0de1ea4215 |
---|---|
35 done | 35 done |
36 | 36 |
37 if [ "x$subdirs" = x ]; then | 37 if [ "x$subdirs" = x ]; then |
38 rm -f subdirs.el | 38 rm -f subdirs.el |
39 else | 39 else |
40 | 40 rm -f subdirs.el~ |
41 echo ";; -*- no-byte-compile: t -*-" > subdirs.el | 41 echo ";; -*- no-byte-compile: t -*- |
42 | 42 ;; In load-path, after this directory should come |
43 echo ";; In load-path, after this directory should come | 43 ;; certain of its subdirectories. Here we specify them. |
44 ;; certain of its subdirectories. Here we specify them." >> subdirs.el | 44 (normal-top-level-add-to-load-path '($subdirs)) |
45 | |
46 echo "(normal-top-level-add-to-load-path '($subdirs)) | |
47 ;; Local" "Variables: | 45 ;; Local" "Variables: |
48 ;; version-control: never | 46 ;; version-control: never |
49 ;; no-byte-compile: t | 47 ;; no-byte-compile: t |
50 ;; End:" >> subdirs.el | 48 ;; End:" > subdirs.el~ |
49 mv subdirs.el~ subdirs.el | |
51 fi | 50 fi |
52 | 51 |
53 # arch-tag: 56ebcf1b-5c30-4934-b0b4-72d374064704 | 52 # arch-tag: 56ebcf1b-5c30-4934-b0b4-72d374064704 |