| Summary: | When selecting text, konsole silently gobbles spaces that occur at the end of the line | ||
|---|---|---|---|
| Product: | [Applications] konsole | Reporter: | Tristan Miller <psychonaut> |
| Component: | general | Assignee: | Konsole Bugs <konsole-bugs-null> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Tristan Miller
2005-01-05 21:46:54 UTC
Sorry, missed a character. The Expected and Observed behaviour sections should read as follows: Expected behaviour: The pasted text reads as follows: n Strategie keine Garantie dafür ist, daß sie angewendet wird. Optimales Lernen kann Observed behaviour: The pasted text reads as follows: n Strategie keine Garantie dafür ist, daß sie angewendet wird. Optimales Lernenkann This seems to be fixed in CVS:
#define LINE_WRAP do { \
assert(d <= columns); \
*stream << makeString(m, d, false); \ <---- was 'true'
d = 0; \
} while(false)
in TEScreen.cpp. When set to 'true' above the behaviour you describe occurs.
|