Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 255619 | Differences between
and this patch

Collapse All | Expand All

(-)core/org/eclipse/debug/core/DebugPlugin.java (-1 / +4 lines)
Lines 1283-1289 Link Here
1283
				if (ch == '\\') {
1283
				if (ch == '\\') {
1284
					ch= getNext();
1284
					ch= getNext();
1285
					if (ch != '"') {           // Only escape double quotes
1285
					if (ch != '"') {           // Only escape double quotes
1286
						buf.append('\\');
1286
					    if (!Platform.getOS().equals(Constants.OS_MACOSX)) {
1287
			                // @see Bug 255619. Mac OS X requires a slightly different treatment
1288
					        buf.append('\\');
1289
					    }
1287
					} else {
1290
					} else {
1288
						if (Platform.getOS().equals(Constants.OS_WIN32)) {
1291
						if (Platform.getOS().equals(Constants.OS_WIN32)) {
1289
							// @see Bug 26870. Windows requires an extra escape for embedded strings
1292
							// @see Bug 26870. Windows requires an extra escape for embedded strings

Return to bug 255619