Wrong behavior when you use backspace and then accent key Reproducible: Always Steps to Reproduce: 1.write "hello" 2.delete "o" using backspace 3.press accent key and then "o" Actual Results: you will get "he
Wrong behavior when you use backspace and then accent key Reproducible: Always Steps to Reproduce: 1.write "hello" 2.delete "o" using backspace 3.press accent key and then "o" Actual Results: you will get "heó" Expected Results: you would like to have got "helló" to solve this, just initialice keysym variable in aterm-0.4.2/src/command.c line 1366: KeySym keysym; to: KeySym keysym = 0; The same in multi-aterm-0.1/src/command.c line 1496: KeySym keysym; to: KeySym keysym = 0; This fix is thanks to weinholt in #afterstep @freenode
Ok, it should be fixed now. I'm sorry it took so long, but I was mostly away for the last 2 weeks.