Mercurial > emacs
comparison update-subdirs @ 89909:68c22ea6027c
Sync to HEAD
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Fri, 16 Apr 2004 12:51:06 +0000 |
parents | 375f2633d815 |
children | f9a65d7ebd29 |
comparison
equal
deleted
inserted
replaced
89908:ee1402f7b568 | 89909:68c22ea6027c |
---|---|
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 # |
8 # GNU Emacs is free software; you can redistribute it and/or modify | 8 # GNU Emacs is free software; you can redistribute it and/or modify |
9 # it under the terms of the GNU General Public License as published by | 9 # it under the terms of the GNU General Public License as published by |
40 echo ";; -*- no-byte-compile: t -*-" > subdirs.el | 40 echo ";; -*- no-byte-compile: t -*-" > subdirs.el |
41 | 41 |
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 |
51 | |
52 # arch-tag: 56ebcf1b-5c30-4934-b0b4-72d374064704 |