mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-13 20:15:22 +02:00
[320624] [dstore] shell < and > sequence conversion not being applied to thread
This commit is contained in:
parent
43d1836c73
commit
b7e75791b3
1 changed files with 3 additions and 1 deletions
|
@ -20,6 +20,7 @@
|
||||||
* David McKnight (IBM) - [226561] [apidoc] Add API markup to RSE Javadocs where extend / implement is allowed
|
* David McKnight (IBM) - [226561] [apidoc] Add API markup to RSE Javadocs where extend / implement is allowed
|
||||||
* David McKnight (IBM) - [286671] Dstore shell service interprets < and > sequences - cmd descriptor to identify ability
|
* David McKnight (IBM) - [286671] Dstore shell service interprets < and > sequences - cmd descriptor to identify ability
|
||||||
* David McKnight (IBM) [312415] [dstore] shell service interprets < and > sequences - handle old client/new server case
|
* David McKnight (IBM) [312415] [dstore] shell service interprets < and > sequences - handle old client/new server case
|
||||||
|
* David McKnight (IBM) [320624] [dstore] shell < and > sequence conversion not being applied to thread
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.dstore.universal.miners;
|
package org.eclipse.rse.dstore.universal.miners;
|
||||||
|
@ -233,8 +234,9 @@ public class CommandMiner extends Miner
|
||||||
}
|
}
|
||||||
else if (name.equals("C_CHAR_CONVERSION")) //$NON-NLS-1$
|
else if (name.equals("C_CHAR_CONVERSION")) //$NON-NLS-1$
|
||||||
{
|
{
|
||||||
DataElement cmdStatus = getCommandStatus(subject);
|
DataElement cmdStatus = getCommandArgument(theElement, 0);
|
||||||
CommandMinerThread theThread = (CommandMinerThread) _threads.get(cmdStatus.getAttribute(DE.A_ID));
|
CommandMinerThread theThread = (CommandMinerThread) _threads.get(cmdStatus.getAttribute(DE.A_ID));
|
||||||
|
|
||||||
if (theThread != null)
|
if (theThread != null)
|
||||||
{
|
{
|
||||||
theThread._supportsCharConversion = true;
|
theThread._supportsCharConversion = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue