diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2020-09-01 10:35:53 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-01 10:35:53 +0000 |
commit | 2fb3ed9defd5a435b3257a8dda308028505c7731 (patch) | |
tree | a424bfa6c09522eac476fa7ea71bdfeb365a51c7 /proto.h | |
parent | Update ChangeLog (diff) | |
parent | Removed an unnecessary variable declaration (diff) | |
download | w3m-2fb3ed9defd5a435b3257a8dda308028505c7731.tar.gz w3m-2fb3ed9defd5a435b3257a8dda308028505c7731.zip |
Merge pull request #148 from bptato/master
New commands for moving cursor on screen
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ /* $Id: proto.h,v 1.104 2010/07/25 09:55:05 htrb Exp $ */ -/* +/* * This file was automatically generated by version 1.7 of cextract. * Manual editing not recommended. * @@ -156,6 +156,9 @@ extern Anchor *list_menu(Buffer *buf); #endif extern void undoPos(void); extern void redoPos(void); +extern void cursorTop(void); +extern void cursorMiddle(void); +extern void cursorBottom(void); extern int currentLn(Buffer *buf); extern void tmpClearBuffer(Buffer *buf); |