Fix a copypasto in _key_entryup - sacc - sacc(omys), simple console gopher client
git clone git://bitreich.org/sacc/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/sacc/
Log
Files
Refs
Tags
LICENSE
---
commit 61936fd1495847fc5e7b2c530035e3ddec6b8fa0
parent 0bf69cbd39eed396d51cf2d0e931271ef8234032
Author: Leonardo Taccari 
Date:   Mon, 26 Feb 2018 23:17:36 +0100

Fix a copypasto in _key_entryup

_key_entryup moves to the previous link (not the next one).

Diffstat:
  M config.def.h                        |       2 +-

1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/config.def.h b/config.def.h
@@ -4,7 +4,7 @@
 #define _key_lndown        'j' /* move one line down */
 #define _key_entrydown        'J' /* move to next link */
 #define _key_lnup        'k' /* move one line up */
-#define _key_entryup        'K' /* move to next link */
+#define _key_entryup        'K' /* move to previous link */
 #define _key_pgdown        ' ' /* move one screen down */
 #define _key_pgup        'b' /* move one screen up */
 #define _key_home        'g' /* move to the top of page */