diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2013-03-25 11:41:45 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2013-03-25 11:41:45 +0000 |
commit | c7d33c821d4dae98c7df5754abf79f8297bbff9f (patch) | |
tree | 3cec7373bbd9bf11bd62215d0c5bafea2b5d1cba /usr.bin/mg/def.h | |
parent | fa5f89f2e208754ae47e3d06739d6e5cb0e8df54 (diff) |
Display the window's column number in mode line not the
column number of the active window.
OK jasper@
Diffstat (limited to 'usr.bin/mg/def.h')
-rw-r--r-- | usr.bin/mg/def.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mg/def.h b/usr.bin/mg/def.h index c3c8f6194bb..11aa3eaf167 100644 --- a/usr.bin/mg/def.h +++ b/usr.bin/mg/def.h @@ -1,4 +1,4 @@ -/* $OpenBSD: def.h,v 1.134 2012/12/27 18:51:52 florian Exp $ */ +/* $OpenBSD: def.h,v 1.135 2013/03/25 11:41:44 florian Exp $ */ /* This file is in the public domain. */ @@ -505,7 +505,7 @@ int setlineno(int); /* random.c X */ int showcpos(int, int); -int getcolpos(void); +int getcolpos(struct mgwin *); int twiddle(int, int); int openline(int, int); int newline(int, int); |