mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 22:25:25 +02:00
[343421] [dstore] Man page was not displayed properly in the shell
This commit is contained in:
parent
619e1035a8
commit
de10e555a2
1 changed files with 7 additions and 2 deletions
|
@ -23,6 +23,7 @@
|
|||
* David McKnight (IBM) [309338] [dstore] z/OS USS - invocation of 'env' shell command returns inconsistently organized output
|
||||
* David McKnight (IBM) [312415] [dstore] shell service interprets < and > sequences - handle old client/new server case
|
||||
* David McKnight (IBM) [341366] [dstore][shells] codepage IBM-1141 has faulty display of \ character
|
||||
* David McKnight (IBM) [343421] [dstore] Man page was not displayed properly in the shell
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.dstore.universal.miners.command;
|
||||
|
@ -143,10 +144,14 @@ public class OutputHandler extends Handler {
|
|||
switch (currChar)
|
||||
{
|
||||
case '&' :
|
||||
output.append("&");
|
||||
output.append("&"); //$NON-NLS-1$
|
||||
break;
|
||||
case ';' :
|
||||
output.append(";");
|
||||
output.append(";"); //$NON-NLS-1$
|
||||
break;
|
||||
case '\b': // special case for backspace control char
|
||||
int len = output.length()-1;
|
||||
if (len>=0) output.deleteCharAt(len);
|
||||
break;
|
||||
default :
|
||||
output.append(currChar);
|
||||
|
|
Loading…
Add table
Reference in a new issue