summaryrefslogtreecommitdiff
path: root/usr.bin/mg/yank.c
diff options
context:
space:
mode:
authorKjell Wooding <kjell@cvs.openbsd.org>2006-05-28 23:30:17 +0000
committerKjell Wooding <kjell@cvs.openbsd.org>2006-05-28 23:30:17 +0000
commit442d7bef79c89cebc8644e400f5bec74721d6092 (patch)
treef88615cfcffdd017d5ebe172d074896c13ba3663 /usr.bin/mg/yank.c
parenta2416f06ac46dabf19752b024b229348c8d22815 (diff)
Make Window Flags more mnemonic (and less dumb); i.e.
WFHARD -> WFFULL (Redraw full window) WFFORCE -> WFFRAME (Reframe window). No binary change
Diffstat (limited to 'usr.bin/mg/yank.c')
-rw-r--r--usr.bin/mg/yank.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mg/yank.c b/usr.bin/mg/yank.c
index 17962610ed8..aa6116bd4f2 100644
--- a/usr.bin/mg/yank.c
+++ b/usr.bin/mg/yank.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: yank.c,v 1.2 2005/12/20 06:17:36 kjell Exp $ */
+/* $OpenBSD: yank.c,v 1.3 2006/05/28 23:30:16 kjell Exp $ */
/* This file is in the public domain. */
@@ -249,7 +249,7 @@ yank(int f, int n)
lp = lback(lp);
/* adjust framing */
curwp->w_linep = lp;
- curwp->w_flag |= WFHARD;
+ curwp->w_flag |= WFFULL;
}
undo_no_boundary(FALSE);
undo_add_boundary();