Community
Participate
Working Groups
Build Identifier: I20110329-2200 JDK: J2RE 1.5.0 IBM Windows 32 build pwi32devifx-20110214 (SR12 FP4 ) or JRE 1.6.0 IBM Windows 32 build pwi3260sr9fp1-20110208_03 (SR9 FP1) OS: Windows XP SP3 Japanese edition When entering DBCS characters in a text editor, eclipse halts and disappears. As long as I tested, this problem occurs in Windows XP Japanese only. Windows 7, Linux are OK. This problem occurs in v3.7 and v4.1. This problem does not occur in v3.6 Reproducible: Always Steps to Reproduce: 1.Start Eclipse 2.Create a simple project. 3.Create a untitled text. 4.Change the Windows' input method from alphanumeric to Japanese Hiragana input, then enter DBCS in the untitled text. 5. Eclipse halts, and disappears.
Created attachment 192696 [details] Error log This is an error log for this problem.
Hi Kentaroh, can you attach the VM dump? It should either be a sibling of the eclipse.exe or the java.exe/javac.exe.
>Build Identifier: I20110329-2200 I assume this is a 3.7 build not 4.1 as indicated in the version field?
I only have Japanese 'Kana' on my system (English Windows XP) and that works fine using latest 3.7 build together with JRE 1.6.0 IBM Windows 32 build pwi3260sr9fp1-20110208_03 (SR9 FP1). Unfortunately I don't have a Japanese Windows XP at hand. Can you provide more exact steps (how/what DBCS do you enter?
(In reply to comment #4) > I only have Japanese 'Kana' on my system (English Windows XP) I was able to set the input method to Japanese Input method (MS-IME2002) and switch to Hiragana but was not able to crash the system.
(In reply to comment #3) >I assume this is a 3.7 build not 4.1 as indicated in the version field? No, I use I20110329-2200 for 4.1 build. I will attach the screen capture for the id. (In reply to comment #4) >Can you provide more exact steps (how/what DBCS do you enter? Yes, here are my steps. 1. Open the context menu on a project you created. 2. New > Untitled Text File 3. Click input mode icon in the windows language bar, and then click Hiragana 4. Enter Hiragana characters in the untitled text. 5. Then, crash I think you can see this problem in my test machine. I have set up my machine so that you can login my machine using remote login. I will send email about the machine information to you.
Created attachment 192708 [details] screen capture of build id
Please see http://www-01.ibm.com/support/docview.wss?uid=swg21181068#1.1 on how to find the javacore file. Also, please try this: 1. import the SWT bundles into the workspace (Import > Plug-ins and Fragments) 2. create a new Java project 'A' 3. add the two SWT projects to the Java build path of 'A' 4. paste into 'A': ---------------------------- package snippet; import org.eclipse.swt.SWT; import org.eclipse.swt.custom.StyledText; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.*; public class Snippet { public static void main (String [] args) { Display display = new Display (); Shell shell = new Shell (display); shell.setLayout(new FillLayout()); StyledText text = new StyledText (shell, SWT.BORDER); text.setText("ABC"); shell.setSize(200, 200); shell.open(); while (!shell.isDisposed ()) if (!display.readAndDispatch ()) display.sleep (); display.dispose (); } } ---------------------------- 5. Run > Run As > Java Application 6. type Japanese Hiragana Does it also crash?
(In reply to comment #8) > Please see http://www-01.ibm.com/support/docview.wss?uid=swg21181068#1.1 on how > to find the javacore file. I try to find the javacore files, but the files are not found... > 5. Run > Run As > Java Application > 6. type Japanese Hiragana > > Does it also crash? Yes, the snippet crashed. Is this SWT's problem?.
> Yes, the snippet crashed. Is this SWT's problem?. Yes.
Fixed in HEAD. This happened becuase a VtblCall was removed during the work to fix bug 220098. I added the method back, input method is working again.
(In reply to comment #11) > Fixed in HEAD. > > This happened becuase a VtblCall was removed during the work to fix bug 220098. > I added the method back, input method is working again. Still the same problem happens in I20110412-1532 build (v3.7).
Since the same problem happens in the latest build, I am changing the status from Resolved to Reopened.
> Still the same problem happens in I20110412-1532 build (v3.7). Please try with a build where the fix is in. The bug got marked as fixed in HEAD on 2011-04-12 20:53:46, so it is impossible that it is in I20110412-1532.
(In reply to comment #14) > The bug got marked as fixed in HEAD on 2011-04-12 20:53:46 That is "my" time (would be 2011-04-12 14:53:46 build location time) but it's still after the input for the I-build was made.
(In reply to comment #14) > Please try with a build where the fix is in. The bug got marked as fixed in > HEAD on 2011-04-12 20:53:46, so it is impossible that it is in I20110412-1532. OK, thank you.
(In reply to comment #16) > OK, thank you. Try with a nightly build. Thank you.
(In reply to comment #17) > (In reply to comment #16) > > OK, thank you. > Try with a nightly build. Thank you. avoid N20110418-2000 (Bug 343239)
Verified the fix with the I-build as follows. - Version: 3.7.0, Build id: I20110419-1004 - Version: 4.1.0, Build id: I20110422-0200 The both builds work fine. Thank you!