#!/bin/sh

# Author: Ben Wing <ben@xemacs.org>

# Run the correspondence scripts to rearrange the files in each version to
# correspond to the layout in the latest version (21.3), so we can compare
# all versions to each other in CVS (CVS doesn't handle renaming,
# unfortunately).

# NOTE NOTE NOTE NOTE: Make sure you have a backup!!! Copy all your Emacs trees
# to a backup directory before messing with them.

. ./emacs-config

scriptd=`pwd`

for x in $emacsversions ; do
cd $emacsroot/emacs-$x/lisp
echo "Running make-corr-$x ..."
sh $scriptd/make-corr-$x
done
