minix/external/bsd/nvi/dist/ex/ex_undo.c
Lionel Sambuc 0a6a1f1d05 NetBSD re-synchronization of the source tree
This brings our tree to NetBSD 7.0, as found on -current on the
10-10-2015.

This updates:
 - LLVM to 3.6.1
 - GCC to GCC 5.1
 - Replace minix/commands/zdump with usr.bin/zdump
 - external/bsd/libelf has moved to /external/bsd/elftoolchain/
 - Import ctwm
 - Drop sprintf from libminc

Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
2016-01-13 20:32:14 +01:00

82 lines
1.6 KiB
C

/* $NetBSD: ex_undo.c,v 1.3 2014/01/26 21:43:45 christos Exp $ */
/*-
* Copyright (c) 1992, 1993, 1994
* The Regents of the University of California. All rights reserved.
* Copyright (c) 1992, 1993, 1994, 1995, 1996
* Keith Bostic. All rights reserved.
*
* See the LICENSE file for redistribution information.
*/
#include "config.h"
#include <sys/cdefs.h>
#if 0
#ifndef lint
static const char sccsid[] = "Id: ex_undo.c,v 10.7 2001/06/25 15:19:21 skimo Exp (Berkeley) Date: 2001/06/25 15:19:21 ";
#endif /* not lint */
#else
__RCSID("$NetBSD: ex_undo.c,v 1.3 2014/01/26 21:43:45 christos Exp $");
#endif
#include <sys/types.h>
#include <sys/queue.h>
#include <bitstring.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include "../common/common.h"
/*
* ex_undo -- u
* Undo the last change.
*
* PUBLIC: int ex_undo __P((SCR *, EXCMD *));
*/
int
ex_undo(SCR *sp, EXCMD *cmdp)
{
EXF *ep;
MARK m;
/*
* !!!
* Historic undo always set the previous context mark.
*/
m.lno = sp->lno;
m.cno = sp->cno;
if (mark_set(sp, ABSMARK1, &m, 1))
return (1);
/*
* !!!
* Multiple undo isn't available in ex, as there's no '.' command.
* Whether 'u' is undo or redo is toggled each time, unless there
* was a change since the last undo, in which case it's an undo.
*/
ep = sp->ep;
if (!F_ISSET(ep, F_UNDO)) {
F_SET(ep, F_UNDO);
ep->lundo = FORWARD;
}
switch (ep->lundo) {
case BACKWARD:
if (log_forward(sp, &m))
return (1);
ep->lundo = FORWARD;
break;
case FORWARD:
if (log_backward(sp, &m))
return (1);
ep->lundo = BACKWARD;
break;
case NOTSET:
abort();
}
sp->lno = m.lno;
sp->cno = m.cno;
return (0);
}