head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	96.03.18.23.19.20;	author ghudson;	state Exp;
branches;
next	;


desc
@Stock emacs 19.30
@


1.1
log
@Initial revision
@
text
@#!/bin/sh
# Write into $1/subdirs.el a list of subdirs of directory $1.
cd $1
for file in *; do
    case $file in
	*.elc | *.el | term | RCS | . | .. | =* | *~ | *.orig | *.rej)
	  ;;	
	*)
	    if [ -d $file ]; then
	      subdirs="\"$file\" $subdirs"
	    fi
	  ;;
    esac
done

echo ";; In load-path, after this directory should come
;; certain of its subdirectories.  Here we specify them." > subdirs.el

echo "(normal-top-level-add-to-load-path '($subdirs))" >> subdirs.el
@
