Summary: | knotes does not preserve TAB in notes! | ||
---|---|---|---|
Product: | [Unmaintained] knotes | Reporter: | Jens <jens-bugs.kde.org> |
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
Jens
2004-02-25 20:03:03 UTC
CVS commit by brade: LinuxTag: Oh mate, this took me the whole bloody day!! To figure that libical simply didn't implement to read \t properly although it writes it. CCMAIL: 76126-done@bugs.kde.org M +6 -1 icalvalue.c 1.12 --- kdepim/libical/src/libical/icalvalue.c #1.11:1.12 @@ -198,4 +198,9 @@ char* icalmemory_strdup_and_dequote(cons break; } + case 't': + { + *pout = '\t'; + break; + } default: { |