summaryrefslogtreecommitdiff
path: root/bin/ksh/edit.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-12-19 04:14:21 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-12-19 04:14:21 +0000
commitae02df2057edb3b786f254cf8867184962234a11 (patch)
treead13990fa53bf00ead486f59dec05e9b3df1cd3b /bin/ksh/edit.c
parent8695dd2ff775abd06278bea758f0f044d60a34da (diff)
spacing
Diffstat (limited to 'bin/ksh/edit.c')
-rw-r--r--bin/ksh/edit.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/ksh/edit.c b/bin/ksh/edit.c
index 7c56c6297c2..5095ec9fbcb 100644
--- a/bin/ksh/edit.c
+++ b/bin/ksh/edit.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: edit.c,v 1.23 2004/12/18 22:12:23 millert Exp $ */
+/* $OpenBSD: edit.c,v 1.24 2004/12/19 04:14:20 deraadt Exp $ */
/*
* Command line editing - common code
@@ -53,7 +53,7 @@ x_init()
static void
x_sigwinch(sig)
- int sig;
+ int sig;
{
got_sigwinch = 1;
}
@@ -77,7 +77,7 @@ check_sigwinch(void)
if (ws.ws_col) {
x_cols = ws.ws_col < MIN_COLS ? MIN_COLS
: ws.ws_col;
-
+
if ((vp = typeset("COLUMNS", 0, 0, 0, 0)))
setint(vp, (long) ws.ws_col);
}
@@ -172,7 +172,7 @@ x_mode(onoff)
if (onoff) {
struct termios cb;
X_chars oldchars;
-
+
oldchars = edchars;
cb = tty_state;