From d81819680486521a84c8aecc540ed04ba315dec0 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Sat, 11 Dec 1999 12:24:21 +0000 Subject: Import cvs-1.10.7. There are a number of nasty bugs that have been fixed. Obtained from: cyclic.com --- contrib/cvs/diff/diff.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'contrib/cvs/diff/diff.c') diff --git a/contrib/cvs/diff/diff.c b/contrib/cvs/diff/diff.c index 3467b537aeca..e5f7e42bfcda 100644 --- a/contrib/cvs/diff/diff.c +++ b/contrib/cvs/diff/diff.c @@ -13,9 +13,7 @@ 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 GNU DIFF; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +*/ /* GNU DIFF was written by Mike Haertel, David Hayes, Richard Stallman, Len Tower, and Paul Eggert. */ @@ -690,7 +688,8 @@ diff_run (argc, argv, out, callbacks_arg) /* Set the jump buffer, so that diff may abort execution without terminating the process. */ - if ((val = setjmp (diff_abort_buf)) != 0) + val = setjmp (diff_abort_buf); + if (val != 0) { optind = optind_old; if (opened_file) -- cgit v1.2.3