throw out a bunch more of 0x60 characters throughout code and comments
This commit is contained in:
10
edit.c
10
edit.c
@ -1,4 +1,4 @@
|
||||
/* $MirBSD: edit.c,v 1.4 2003/08/31 20:54:02 tg Exp $ */
|
||||
/* $MirBSD: edit.c,v 1.5 2004/04/17 00:47:18 tg Exp $ */
|
||||
/* $OpenBSD: edit.c,v 1.18 2003/08/22 18:17:10 fgsch Exp $ */
|
||||
|
||||
/*
|
||||
@ -69,7 +69,7 @@ x_init()
|
||||
if (_POSIX_VDISABLE >= 0)
|
||||
vdisable_c = (char) _POSIX_VDISABLE;
|
||||
else
|
||||
/* `feature not available' */
|
||||
/* 'feature not available' */
|
||||
vdisable_c = (char) 0377;
|
||||
#else
|
||||
# if defined(HAVE_PATHCONF) && defined(_PC_VDISABLE)
|
||||
@ -108,7 +108,7 @@ check_sigwinch ARGS((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);
|
||||
}
|
||||
@ -211,7 +211,7 @@ x_mode(onoff)
|
||||
if (onoff) {
|
||||
TTY_state cb;
|
||||
X_chars oldchars;
|
||||
|
||||
|
||||
oldchars = edchars;
|
||||
cb = tty_state;
|
||||
|
||||
@ -293,7 +293,7 @@ x_mode(onoff)
|
||||
edchars.eof = '\4';
|
||||
#endif /* __CYGWIN__ */
|
||||
|
||||
/* Convert unset values to internal `unset' value */
|
||||
/* Convert unset values to internal 'unset' value */
|
||||
if (edchars.erase == vdisable_c)
|
||||
edchars.erase = -1;
|
||||
if (edchars.kill == vdisable_c)
|
||||
|
Reference in New Issue
Block a user