Re: [E-devel] Re: [Enlightenment-intl] Bug?

2006-03-10 Thread David Stevenson
On 3/10/06, Aleksej Struk [EMAIL PROTECTED] wrote:
Hi David,I tried to reproduce such behaviour on my sistem. Unfortunatelly Ifailed. I tried to make a swedish/japanese locale. But this did notcreate any effect. Still this bug is not reproducable on my sistem.
What is your locale config ? maybe I do something wrong.
Hey Aleksej,

Just straight Japanese locale here (LANG=ja_JP.EUC-JP). 
But I've done some more gdb'ing and found the segv bug.

The crash was occuring when acn = 72. This offset in the array is out of bounds.
The Run Command action is actually about #22 in the array, so the for
loop is spinning off the end of the array without matching the string. 

http://www.geocities.jp/david_at_tokyo/e17/tmp/binding.jpg

As you can see, currently only the Run Command string is actually getting localized. 

(line 623)
 e_widget_ilist_append(cfdata-gui.action_ilist, ic,

_(actions_predefined_names[eckb-acn].action_name),

NULL, NULL, NULL);

The labels on screen are getting set as above, using the _() i18n macro.

When we are doing the comparisons though, we are comparing with the original english string (thus matching was failing)

(line 845 of the keybindings.c) 

 label = strdup(e_widget_ilist_selected_label_get(obj));

 for (acn = 0; strcasecmp(label, actions_predefined_names[acn].action_name == NULL ?  :

actions_predefined_names[acn].action_name) != 0; acn++ );



Wrapping the action_names there inside the _() macro fixes the segv problem (very simple change, so I've committed it myself)
Another approach would have been to move to matching based on something
other than the localized strings, like the action_cmd strings
perhaps... but, this simple fix works.


Also, about the problem of the key binding strings displayed on screen not getting localized. 
When using _(string) for i18n purposes, the string arg needs to have
been marked such that xgettext can spot it when it creates the
enlightenment.pot file.
In this case, the strings are all defined in actions_predefined_name,
but as they aren't marked with _() none of them are in
enlightenment.pot - Run Command is the only one displayed here
because the exact same string is also used in e_int_menus.c (some kind
of luck, good or bad, that it works :))

I think what needs to happen is any string that needs translation
should be wrapped directly using _(), rather than putting the string in
a variable then passing that variable to _(). Localization for all the
keybinding strings should then be possible, as well.

There is also a similar problem elsewhere that I noticed a while back
for the desktop names (like Desktop 1,1 etc). I'll possibly take a
look at that sometime shortly, unless someone else beats me to it :-)

Regards!
David








Re: [E-devel] Re: [Enlightenment-intl] Bug?

2006-03-09 Thread Aleksej Struk
On Thu, Mar 09, 2006 at 07:57:48AM +0100, Anders Troback wrote:
// On Wed, 08 Mar 2006 23:00:45 +0900 (JST)
// Yasufumi Haga [EMAIL PROTECTED] wrote:
// 
//  Hello
//  
//  On Wed, 8 Mar 2006 13:54:45 +0100,
// Anders Troback [EMAIL PROTECTED] wrote:
//  
//  | Hi,
//  |
//  | if I run E17 with the Swedish locale and entering the Key binding
//  | Settings in Configuration Panel E17 segs when I select the Run
//  Command | line!
//  
//  I have the same problem with ja_JP.eucJP.
//  

Is it possible to have a backtrace ? Is this happens with the latest CVS
? 


// 
// 
// ---
// This SF.Net email is sponsored by xPML, a groundbreaking scripting language
// that extends applications into web and mobile media. Attend the live webcast
// and join the prime developer group breaking into this new coding territory!
// http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
// ___
// enlightenment-devel mailing list
// enlightenment-devel@lists.sourceforge.net
// https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Re: [Enlightenment-intl] Bug?

2006-03-09 Thread David Stevenson
Hi Aleksej,

I can reproduce this too here (Japanese language). See my attachment.

Maybe there is some issue with using strcasecmp with non ASCII?
My initial guess.

Regards!
DavidOn 3/9/06, Aleksej Struk [EMAIL PROTECTED] wrote:
On Thu, Mar 09, 2006 at 07:57:48AM +0100, Anders Troback wrote:// On Wed, 08 Mar 2006 23:00:45 +0900 (JST)// Yasufumi Haga [EMAIL PROTECTED] wrote://
//  Hello// //  On Wed, 8 Mar 2006 13:54:45 +0100,// Anders Troback [EMAIL PROTECTED] wrote:// //  | Hi,//  |
//  | if I run E17 with the Swedish locale and entering the Key binding//  | Settings in Configuration Panel E17 segs when I select the Run//  Command | line!// //  I have the same problem with ja_JP.eucJP.
// Is it possible to have a backtrace ? Is this happens with the latest CVS?// ---// This SF.Net email is sponsored by xPML, a groundbreaking scripting language
// that extends applications into web and mobile media. Attend the live webcast// and join the prime developer group breaking into this new coding territory!// 
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642// ___// enlightenment-devel mailing list// 
enlightenment-devel@lists.sourceforge.net// https://lists.sourceforge.net/lists/listinfo/enlightenment-devel---
This SF.Net email is sponsored by xPML, a groundbreaking scripting languagethat extends applications into web and mobile media. Attend the live webcastand join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642___
enlightenment-devel mailing listenlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Script started on Thu Mar  9 20:46:00 2006
[EMAIL PROTECTED]:~$ gdb enlightenmne  ent 3189
GNU gdb 6.4-debian
Copyright 2005 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type show copying to see the conditions.
There is absolutely no warranty for GDB.  Type show warranty for details.
This GDB was configured as i486-linux-gnu...Using host libthread_db library 
/lib/tls/libthread_db.so.1.

Attaching to program: /usr/local/bin/enlightenment, process 3189
Reading symbols from /usr/local/lib/libevas.so.1...done.
Loaded symbols for /usr/local/lib/libevas.so.1
Reading symbols from /usr/local/lib/libecore.so.1...done.
Loaded symbols for /usr/local/lib/libecore.so.1
Reading symbols from /usr/local/lib/libecore_job.so.1...done.
Loaded symbols for /usr/local/lib/libecore_job.so.1
Reading symbols from /usr/local/lib/libecore_x.so.1...done.
Loaded symbols for /usr/local/lib/libecore_x.so.1
Reading symbols from /usr/local/lib/libecore_evas.so.1...done.
Loaded symbols for /usr/local/lib/libecore_evas.so.1
Reading symbols from /usr/local/lib/libecore_con.so.1...done.
Loaded symbols for /usr/local/lib/libecore_con.so.1
Reading symbols from /usr/local/lib/libecore_ipc.so.1...done.
Loaded symbols for /usr/local/lib/libecore_ipc.so.1
Reading symbols from /usr/local/lib/libecore_txt.so.1...done.
Loaded symbols for /usr/local/lib/libecore_txt.so.1
Reading symbols from /usr/local/lib/libecore_fb.so.1...done.
Loaded symbols for /usr/local/lib/libecore_fb.so.1
Reading symbols from /usr/local/lib/libecore_config.so.1...done.
Loaded symbols for /usr/local/lib/libecore_config.so.1
Reading symbols from /usr/local/lib/libecore_file.so.1...done.
Loaded symbols for /usr/local/lib/libecore_file.so.1
Reading symbols from /usr/local/lib/libecore_dbus.so.1...done.
Loaded symbols for /usr/local/lib/libecore_dbus.so.1
Reading symbols from /usr/local/lib/libedje.so.0...done.
Loaded symbols for /usr/local/lib/libedje.so.0
Reading symbols from /usr/local/lib/libeet.so.0...done.
Loaded symbols for /usr/local/lib/libeet.so.0
Reading symbols from /usr/lib/libz.so.1...done.
Loaded symbols for /usr/lib/libz.so.1
Reading symbols from /usr/lib/libjpeg.so.62...done.
Loaded symbols for /usr/lib/libjpeg.so.62
Reading symbols from /usr/local/lib/libembryo.so.0...done.
Loaded symbols for /usr/local/lib/libembryo.so.0
Reading symbols from /lib/tls/libm.so.6...done.
Loaded symbols for /lib/tls/libm.so.6
Reading symbols from /usr/X11R6/lib/libX11.so.6...done.
Loaded symbols for /usr/X11R6/lib/libX11.so.6
Reading symbols from /usr/X11R6/lib/libXext.so.6...done.
Loaded symbols for /usr/X11R6/lib/libXext.so.6
Reading symbols from /lib/tls/libdl.so.2...done.
Loaded symbols for /lib/tls/libdl.so.2
Reading symbols from /lib/tls/libc.so.6...done.
Loaded symbols for /lib/tls/libc.so.6
Reading symbols from /usr/lib/libfreetype.so.6...done.
Loaded symbols for /usr/lib/libfreetype.so.6
Reading symbols from /usr/lib/libXcursor.so.1...done.
Loaded symbols for /usr/lib/libXcursor.so.1

Re: [E-devel] Re: [Enlightenment-intl] Bug?

2006-03-09 Thread Massimo Maiurana
Aleksej Struk, il 09/03/2006 12:20, scrisse:

 Is it possible to have a backtrace ? Is this happens with the latest CVS
 ? 

attached is a bt about the same problem :)

-- 
   Massimo Maiurana massimoatragusa.linux.it
   http://massimo.solira.org   GPG keyID #7044D601

Articolo 11 - L'Italia ripudia la guerra come strumento di offesa
alla libertà degli altri popoli e come mezzo di risoluzione delle
controversie internazionali
Program received signal SIGSEGV, Segmentation fault.
0xb7a761c6 in strcasecmp () from /lib/libc.so.6
(gdb) bt
#0  0xb7a761c6 in strcasecmp () from /lib/libc.so.6
#1  0x080f7108 in _ilist_kb_cb_change (data=0x8a92df8, obj=0x86dde38) at 
e_int_config_keybindings.c:1250
#2  0x080d93d4 in e_widget_change (obj=0x86dde38) at e_widget.c:411
#3  0x080ee236 in _e_wid_cb_item_sel (data=0x848c7e0, data2=0x8760fa0) at 
e_widget_ilist.c:255
#4  0x080ead94 in e_ilist_selected_set (obj=0x894fed0, n=22) at e_ilist.c:160
#5  0x080eb616 in _e_smart_event_mouse_down (data=0x8760fb0, e=0x86b7830, 
obj=0x8760fd0, event_info=0xbfa1a210)
at e_ilist.c:333
#6  0xb7e31550 in evas_object_event_callback_call (obj=0x8760fd0, 
type=EVAS_CALLBACK_MOUSE_DOWN, event_info=0xbfa1a210)
at evas_callbacks.c:189
#7  0xb7e315dd in evas_object_event_callback_call (obj=0x87630c8, 
type=EVAS_CALLBACK_MOUSE_DOWN, event_info=0xbfa1a210)
at evas_callbacks.c:200
#8  0xb7e32e37 in evas_event_feed_mouse_down (e=0x86b7830, b=1, 
flags=EVAS_BUTTON_NONE, timestamp=243377037, data=0x0)
at evas_events.c:264
#9  0xb7efb7b1 in _ecore_evas_x_event_mouse_button_down (data=0x0, type=12, 
event=0x8797910) at ecore_evas_x.c:370
#10 0xb7d9ea31 in _ecore_event_call () at ecore_events.c:431
#11 0xb7da5a5b in _ecore_main_loop_iterate_internal (once_only=0) at 
ecore_main.c:639
#12 0xb7da4b97 in ecore_main_loop_begin () at ecore_main.c:79
#13 0x080626bd in main (argc=1, argv=0xbfa48464) at e_main.c:679


signature.asc
Description: OpenPGP digital signature


Re: [E-devel] Re: [Enlightenment-intl] Bug?

2006-03-09 Thread Anders Troback
On Thu, 9 Mar 2006 11:20:57 +
Aleksej Struk [EMAIL PROTECTED] wrote:

 On Thu, Mar 09, 2006 at 07:57:48AM +0100, Anders Troback wrote:
 // On Wed, 08 Mar 2006 23:00:45 +0900 (JST)
 // Yasufumi Haga [EMAIL PROTECTED] wrote:
 // 
 //  Hello
 //  
 //  On Wed, 8 Mar 2006 13:54:45 +0100,
 // Anders Troback [EMAIL PROTECTED] wrote:
 //  
 //  | Hi,
 //  |
 //  | if I run E17 with the Swedish locale and entering the Key
 binding //  | Settings in Configuration Panel E17 segs when I select
 the Run //  Command | line!
 //  
 //  I have the same problem with ja_JP.eucJP.
 //  
 
 Is it possible to have a backtrace ? Is this happens with the latest
 CVS ? 
 

Yes, not sure how to that with a WM, help please! 

Define latest in CVS;-) CVS co about six hours ago


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Re: [Enlightenment-intl] Bug?

2006-03-09 Thread Aleksej Struk
On Thu, Mar 09, 2006 at 01:54:20PM +0100, Massimo Maiurana wrote:
// Aleksej Struk, il 09/03/2006 12:20, scrisse:
// 
//  Is it possible to have a backtrace ? Is this happens with the latest CVS
//  ? 
// 
// attached is a bt about the same problem :)
// 
// -- 
//Massimo Maiurana massimoatragusa.linux.it
//http://massimo.solira.org   GPG keyID #7044D601
// 
// Articolo 11 - L'Italia ripudia la guerra come strumento di offesa
// alla libert? degli altri popoli e come mezzo di risoluzione delle
// controversie internazionali

// Program received signal SIGSEGV, Segmentation fault.
// 0xb7a761c6 in strcasecmp () from /lib/libc.so.6
// (gdb) bt
// #0  0xb7a761c6 in strcasecmp () from /lib/libc.so.6
// #1  0x080f7108 in _ilist_kb_cb_change (data=0x8a92df8, obj=0x86dde38) at 
e_int_config_keybindings.c:1250
// #2  0x080d93d4 in e_widget_change (obj=0x86dde38) at e_widget.c:411
// #3  0x080ee236 in _e_wid_cb_item_sel (data=0x848c7e0, data2=0x8760fa0) at 
e_widget_ilist.c:255
// #4  0x080ead94 in e_ilist_selected_set (obj=0x894fed0, n=22) at e_ilist.c:160
// #5  0x080eb616 in _e_smart_event_mouse_down (data=0x8760fb0, e=0x86b7830, 
obj=0x8760fd0, event_info=0xbfa1a210)
// at e_ilist.c:333
// #6  0xb7e31550 in evas_object_event_callback_call (obj=0x8760fd0, 
type=EVAS_CALLBACK_MOUSE_DOWN, event_info=0xbfa1a210)
// at evas_callbacks.c:189
// #7  0xb7e315dd in evas_object_event_callback_call (obj=0x87630c8, 
type=EVAS_CALLBACK_MOUSE_DOWN, event_info=0xbfa1a210)
// at evas_callbacks.c:200
// #8  0xb7e32e37 in evas_event_feed_mouse_down (e=0x86b7830, b=1, 
flags=EVAS_BUTTON_NONE, timestamp=243377037, data=0x0)
// at evas_events.c:264
// #9  0xb7efb7b1 in _ecore_evas_x_event_mouse_button_down (data=0x0, type=12, 
event=0x8797910) at ecore_evas_x.c:370
// #10 0xb7d9ea31 in _ecore_event_call () at ecore_events.c:431
// #11 0xb7da5a5b in _ecore_main_loop_iterate_internal (once_only=0) at 
ecore_main.c:639
// #12 0xb7da4b97 in ecore_main_loop_begin () at ecore_main.c:79
// #13 0x080626bd in main (argc=1, argv=0xbfa48464) at e_main.c:679


Hhh, actually bt seems a little bit old. Actually the function
_ilist_kb_cb_change do not exist anymore. It was removed and replaced by
another, since the dialog interface changed, with the last update. 

But any way, it seems that all the roads go to strcmp ...


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Re: [Enlightenment-intl] Bug?

2006-03-09 Thread The Rasterman
On Thu, 9 Mar 2006 15:58:31 + Aleksej Struk [EMAIL PROTECTED] babbled:

 On Thu, Mar 09, 2006 at 01:54:20PM +0100, Massimo Maiurana wrote:
 // Aleksej Struk, il 09/03/2006 12:20, scrisse:
 // 
 //  Is it possible to have a backtrace ? Is this happens with the latest CVS
 //  ? 
 // 
 // attached is a bt about the same problem :)
 // 
 // -- 
 //Massimo Maiurana massimoatragusa.linux.it
 //http://massimo.solira.org   GPG keyID #7044D601
 // 
 // Articolo 11 - L'Italia ripudia la guerra come strumento di offesa
 // alla libert? degli altri popoli e come mezzo di risoluzione delle
 // controversie internazionali
 
 // Program received signal SIGSEGV, Segmentation fault.
 // 0xb7a761c6 in strcasecmp () from /lib/libc.so.6
 // (gdb) bt
 // #0  0xb7a761c6 in strcasecmp () from /lib/libc.so.6
 // #1  0x080f7108 in _ilist_kb_cb_change (data=0x8a92df8, obj=0x86dde38) at
 e_int_config_keybindings.c:1250 // #2  0x080d93d4 in e_widget_change
 (obj=0x86dde38) at e_widget.c:411 // #3  0x080ee236 in _e_wid_cb_item_sel
 (data=0x848c7e0, data2=0x8760fa0) at e_widget_ilist.c:255 // #4  0x080ead94
 in e_ilist_selected_set (obj=0x894fed0, n=22) at e_ilist.c:160 // #5
 0x080eb616 in _e_smart_event_mouse_down (data=0x8760fb0, e=0x86b7830,
 obj=0x8760fd0, event_info=0xbfa1a210) // at e_ilist.c:333 // #6
 0xb7e31550 in evas_object_event_callback_call (obj=0x8760fd0,
 type=EVAS_CALLBACK_MOUSE_DOWN, event_info=0xbfa1a210) // at
 evas_callbacks.c:189 // #7  0xb7e315dd in evas_object_event_callback_call
 (obj=0x87630c8, type=EVAS_CALLBACK_MOUSE_DOWN, event_info=0xbfa1a210) //
 at evas_callbacks.c:200 // #8  0xb7e32e37 in evas_event_feed_mouse_down
 (e=0x86b7830, b=1, flags=EVAS_BUTTON_NONE, timestamp=243377037,
 data=0x0) // at evas_events.c:264 // #9  0xb7efb7b1 in
 _ecore_evas_x_event_mouse_button_down (data=0x0, type=12, event=0x8797910) at
 ecore_evas_x.c:370 // #10 0xb7d9ea31 in _ecore_event_call () at
 ecore_events.c:431 // #11 0xb7da5a5b in _ecore_main_loop_iterate_internal
 (once_only=0) at ecore_main.c:639 // #12 0xb7da4b97 in ecore_main_loop_begin
 () at ecore_main.c:79 // #13 0x080626bd in main (argc=1, argv=0xbfa48464) at
 e_main.c:679
 
 
 Hhh, actually bt seems a little bit old. Actually the function
 _ilist_kb_cb_change do not exist anymore. It was removed and replaced by
 another, since the dialog interface changed, with the last update. 
 
 But any way, it seems that all the roads go to strcmp ...

and i bet one of the string params to strcasecmp() is NULL.. that's whats 
causing it. :]

 
 ---
 This SF.Net email is sponsored by xPML, a groundbreaking scripting language
 that extends applications into web and mobile media. Attend the live webcast
 and join the prime developer group breaking into this new coding territory!
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 


-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]
裸好多
Tokyo, Japan (東京 日本)


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Re: [Enlightenment-intl] Bug?

2006-03-09 Thread The Rasterman
On Thu, 9 Mar 2006 15:58:31 + Aleksej Struk [EMAIL PROTECTED] babbled:

 On Thu, Mar 09, 2006 at 01:54:20PM +0100, Massimo Maiurana wrote:
 // Aleksej Struk, il 09/03/2006 12:20, scrisse:
 // 
 //  Is it possible to have a backtrace ? Is this happens with the latest CVS
 //  ? 
 // 
 // attached is a bt about the same problem :)
 // 
 // -- 
 //Massimo Maiurana massimoatragusa.linux.it
 //http://massimo.solira.org   GPG keyID #7044D601
 // 
 // Articolo 11 - L'Italia ripudia la guerra come strumento di offesa
 // alla libert? degli altri popoli e come mezzo di risoluzione delle
 // controversie internazionali
 
 // Program received signal SIGSEGV, Segmentation fault.
 // 0xb7a761c6 in strcasecmp () from /lib/libc.so.6
 // (gdb) bt
 // #0  0xb7a761c6 in strcasecmp () from /lib/libc.so.6
 // #1  0x080f7108 in _ilist_kb_cb_change (data=0x8a92df8, obj=0x86dde38) at
 e_int_config_keybindings.c:1250 // #2  0x080d93d4 in e_widget_change
 (obj=0x86dde38) at e_widget.c:411 // #3  0x080ee236 in _e_wid_cb_item_sel
 (data=0x848c7e0, data2=0x8760fa0) at e_widget_ilist.c:255 // #4  0x080ead94
 in e_ilist_selected_set (obj=0x894fed0, n=22) at e_ilist.c:160 // #5
 0x080eb616 in _e_smart_event_mouse_down (data=0x8760fb0, e=0x86b7830,
 obj=0x8760fd0, event_info=0xbfa1a210) // at e_ilist.c:333 // #6
 0xb7e31550 in evas_object_event_callback_call (obj=0x8760fd0,
 type=EVAS_CALLBACK_MOUSE_DOWN, event_info=0xbfa1a210) // at
 evas_callbacks.c:189 // #7  0xb7e315dd in evas_object_event_callback_call
 (obj=0x87630c8, type=EVAS_CALLBACK_MOUSE_DOWN, event_info=0xbfa1a210) //
 at evas_callbacks.c:200 // #8  0xb7e32e37 in evas_event_feed_mouse_down
 (e=0x86b7830, b=1, flags=EVAS_BUTTON_NONE, timestamp=243377037,
 data=0x0) // at evas_events.c:264 // #9  0xb7efb7b1 in
 _ecore_evas_x_event_mouse_button_down (data=0x0, type=12, event=0x8797910) at
 ecore_evas_x.c:370 // #10 0xb7d9ea31 in _ecore_event_call () at
 ecore_events.c:431 // #11 0xb7da5a5b in _ecore_main_loop_iterate_internal
 (once_only=0) at ecore_main.c:639 // #12 0xb7da4b97 in ecore_main_loop_begin
 () at ecore_main.c:79 // #13 0x080626bd in main (argc=1, argv=0xbfa48464) at
 e_main.c:679
 
 
 Hhh, actually bt seems a little bit old. Actually the function
 _ilist_kb_cb_change do not exist anymore. It was removed and replaced by
 another, since the dialog interface changed, with the last update. 
 
 But any way, it seems that all the roads go to strcmp ...

can u update and get some new backtraces? there are a lot of strcasecmp's in 
that code... :)

-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]
裸好多
Tokyo, Japan (東京 日本)


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Re: [Enlightenment-intl] Bug?

2006-03-08 Thread Anders Troback
On Wed, 08 Mar 2006 23:00:45 +0900 (JST)
Yasufumi Haga [EMAIL PROTECTED] wrote:

 Hello
 
 On Wed, 8 Mar 2006 13:54:45 +0100,
Anders Troback [EMAIL PROTECTED] wrote:
 
 | Hi,
 |
 | if I run E17 with the Swedish locale and entering the Key binding
 | Settings in Configuration Panel E17 segs when I select the Run
 Command | line!
 
 I have the same problem with ja_JP.eucJP.
 

OK, thanks!

I will send this to the devel list!

\\troback


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel