Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 52770 - aterm and multi-aterm wrong behavior when using accent key after backspace [FIXED] (see additional information)
Summary: aterm and multi-aterm wrong behavior when using accent key after backspace [F...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: x86 Linux
: High normal
Assignee: Michal Januszewski (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-06-02 05:08 UTC by funky
Modified: 2004-06-13 08:20 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description funky 2004-06-02 05:08:54 UTC
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
Comment 1 funky 2004-06-02 05:08:54 UTC
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
Comment 2 Michal Januszewski (RETIRED) gentoo-dev 2004-06-13 08:20:02 UTC
Ok, it should be fixed now. I'm sorry it took so long, but I was mostly away for the last 2 weeks.