Summary: | knotes interpretes newline characters (\n) into a real newline | ||
---|---|---|---|
Product: | [Unmaintained] knotes | Reporter: | Thomas Reitelbach <tr> |
Component: | general | Assignee: | Michael Brade <brade> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 3.0 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Thomas Reitelbach
2004-01-02 18:16:38 UTC
CVS commit by brade: fixed #71685: again a libical bug, it did not encode '\' at all so it was possible to write control sequences in KNotes, e.g. \n. Also some non-voluntary trailing whitespace removal (blame kate :) CCMAIL: 71685-done@bugs.kde.org M +124 -123 icalvalue.c 1.13 --- kdepim/libical/src/libical/icalvalue.c #1.12:1.13 @@ -699,5 +699,6 @@ char* icalvalue_text_as_ical_string(ical case ';': - case ',':{ + case ',': + case '\\': { icalmemory_append_char(&str,&str_p,&buf_sz,'\\'); icalmemory_append_char(&str,&str_p,&buf_sz,*p); |