#!/bin/sh --
d=../rxvt-devel
for f in \
ChangeLog \
FAQ \
Imakefile \
INSTALL \
README.greek \
README.xvt \
TODO \
command.c \
command.h \
rxvt.lsm \
rxvt.man \
rxvt.ref \
command.c \
command.h \
configure.h \
debug.c \
debug.h \
defaults.h \
graphics.c \
graphics.h \
grkelot.c \
grkelot.h \
netdisp.c \
resources.c \
rxvt.c \
rxvt.h \
rxvtkeys.h \
rxvt_grx.h \
sbar.c \
sbar.h \
screen.c \
screen.h \
termcap \
terminfo \
utmp.c \
xsetup.c \
xsetup.h \
xterm.seq \
graphics/Makefile \
graphics/README \
graphics/data \
graphics/graphics_lib.c \
graphics/graphics_lib.h \
graphics/qplot.c
do
    r=`cmp ${d}/$f ./$f`
    if [ ! -z "$r" ]
    then
	diff -uw ${d}/$f ./$f > ./${f}.dif
    fi
done
