diff options
author | 2002-02-20 23:57:52 +0000 | |
---|---|---|
committer | 2002-02-20 23:57:52 +0000 | |
commit | d0f28b74e88053f27594167814d2a1e17725d67c (patch) | |
tree | 656b751a7e9b1f785ca572cccb9f23750df561bd | |
parent | bind C-_ to undo. (diff) | |
download | wireguard-openbsd-d0f28b74e88053f27594167814d2a1e17725d67c.tar.xz wireguard-openbsd-d0f28b74e88053f27594167814d2a1e17725d67c.zip |
do not print "New size..." -- other emacs do not bother
-rw-r--r-- | usr.bin/mg/window.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/mg/window.c b/usr.bin/mg/window.c index a4b63a35dab..d3f9aabf7cc 100644 --- a/usr.bin/mg/window.c +++ b/usr.bin/mg/window.c @@ -1,4 +1,4 @@ -/* $OpenBSD: window.c,v 1.9 2002/02/14 14:24:21 deraadt Exp $ */ +/* $OpenBSD: window.c,v 1.10 2002/02/20 23:57:52 deraadt Exp $ */ /* * Window handling. @@ -67,7 +67,6 @@ refresh(f, n) wp->w_ntrows = nrow - wp->w_toprow - 2; sgarbf = TRUE; update(); - ewprintf("New size %d by %d", nrow, ncol); } else sgarbf = TRUE; return TRUE; |