diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2016-03-22 10:51:05 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2016-03-22 11:09:26 +0000 |
commit | e27a95dabe860a684b51a3228f3794c8f9dad952 (patch) | |
tree | 124f0f45659d10f08ed92b5cd67c62fd7843db8d /menu.c | |
parent | Update ChangeLog (diff) | |
download | w3m-e27a95dabe860a684b51a3228f3794c8f9dad952.tar.gz w3m-e27a95dabe860a684b51a3228f3794c8f9dad952.zip |
Fix build failure when not USE_MOUSE for sgrmouse
cf. https://twitter.com/naota344/status/711541592167854081
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1304,6 +1304,12 @@ mMouse(char c) { return (MENU_NOTHING); } + +static int +mSgrMouse(char c) +{ + return (MENU_NOTHING); +} #endif /* not USE_MOUSE */ /* --- MenuFunctions (END) --- */ |