#!/bin/bash

#  Authors     [Robert Meolic (meolic@uni-mb.si)]
#  Revision    [$Revision: 54 $]
#  Date        [$Date: 2012-05-16 14:52:58 +0200 (sre, 16 maj 2012) $]
#
#  Copyright   [This file is part of EST (Efficient Symbolic Tools).
#               Copyright (C) 2003, 2012
#               UM-FERI, Smetanova ulica 17, SI-2000 Maribor, Slovenia
#
#               EST is free software; you can redistribute it and/or modify
#               it under the terms of the GNU General Public License as
#               published by the Free Software Foundation; either version 2
#               of the License, or (at your option) any later version.
#
#               EST is distributed in the hope that it will be useful,
#               but WITHOUT ANY WARRANTY; without even the implied warranty of
#               MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#               GNU General Public License for more details.
#
#               You should have received a copy of the GNU General Public
#               License along with this program; if not, write to the Free
#               Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
#               Boston, MA 02110-1301 USA.]

# THIS SCRIPT IS USED TO GET DIFFERENCES BETWEEN CURRENT VERSION AND
# THE LAST VERSION IN SVN REPOSITORY
#
# USAGE: do-diff file
#
# EXAMPLE: do-diff source/pa/paMain.c

svn cat $1 > /tmp/do-diff.tmp
tkdiff /tmp/do-diff.tmp $1
rm /tmp/do-diff.tmp
