The author seems to have dropped gettext and any NLS support. Changes: * Fix a minor bug that caused problems when sending files, * Shows a warning when you run more than one clients with the same UIN, * Fix a big that caused some messages not to appear in history, * Manual page included in the package - centericq(1), * An ability to turn off local mailbox checking was added.
20 lines
717 B
Plaintext
20 lines
717 B
Plaintext
$OpenBSD: patch-kkconsui-0_1_src_cmenus_cc,v 1.1 2001/06/30 17:34:14 pvalchev Exp $
|
|
--- kkconsui-0.1/src/cmenus.cc.orig Fri Jun 29 22:42:32 2001
|
|
+++ kkconsui-0.1/src/cmenus.cc Fri Jun 29 22:43:12 2001
|
|
@@ -239,6 +239,7 @@ int verticalmenu::open() {
|
|
ret = 0;
|
|
break;
|
|
|
|
+ case 'k':
|
|
case KEY_UP:
|
|
if(curelem > 0) {
|
|
shownelem(curelem, 0);
|
|
@@ -262,6 +263,7 @@ int verticalmenu::open() {
|
|
}
|
|
break;
|
|
|
|
+ case 'j':
|
|
case KEY_DOWN:
|
|
if(!items.empty()) {
|
|
if(curelem < items.size()-1) {
|