Remove some commented code

This commit is contained in:
speedie 2023-05-13 17:37:37 +02:00
parent 66bcc31242
commit 60f588f003

View file

@ -27,13 +27,6 @@ void moveleft(Arg *arg) {
drawmenu();
calcoffsets();
}
/*
if (cursor > 0 && (!sel || !sel->left || lines > 0)) {
cursor = nextrune(-1);
drawmenu();
}
*/
}
void moveright(Arg *arg) {
@ -64,13 +57,6 @@ void moveright(Arg *arg) {
}
drawmenu();
/*
if (text[cursor] != '\0') {
cursor = nextrune(+1);
drawmenu();
}
*/
}
void movedown(Arg *arg) {
@ -171,8 +157,8 @@ void paste(Arg *arg) {
}
XConvertSelection(dpy, clipboard, utf8, utf8, win, CurrentTime);
return;
return;
}
void viewhist(Arg *arg) {