diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-11-11 13:38:45 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-11-11 13:38:45 +0100 |
commit | 609a4cd6cfd4baa6e56c6e2c8befaf77903dc887 (patch) | |
tree | dcf7eb7fc097b038b4f65cca884b048189f3adb6 | |
parent | 13e925c3f49bc29514064ce52e3fa0ba0ca6c8ab (diff) | |
download | vdr-609a4cd6cfd4baa6e56c6e2c8befaf77903dc887.tar.gz vdr-609a4cd6cfd4baa6e56c6e2c8befaf77903dc887.tar.bz2 |
No longer removing superfluous hyphens in EPG data
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | epg.c | 15 |
2 files changed, 3 insertions, 14 deletions
@@ -3945,3 +3945,5 @@ Video Disk Recorder Revision History - Added compiler options "-fPIC -g" to all plugins (thanks to Rolf Ahrenberg). - Fixed initializing the day index when editing the weekday parameter of a repeating timer (thanks to Marco Schlüßler). +- No longer removing superfluous hyphens in EPG data - would become too + language dependent to handle all kinds of exceptions. @@ -7,7 +7,7 @@ * Original version (as used in VDR before 1.3.0) written by * Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>. * - * $Id: epg.c 1.39 2005/11/06 10:31:58 kls Exp $ + * $Id: epg.c 1.40 2005/11/11 13:37:43 kls Exp $ */ #include "epg.h" @@ -503,19 +503,6 @@ void cEvent::FixEpgBugs(void) title = compactspace(title); shortText = compactspace(shortText); description = compactspace(description); - // Remove superfluous hyphens: - if (description) { - char *p = description; - while (*p && *(p + 1) && *(p + 2)) { - if (*p == '-' && *(p + 1) == ' ' && p != description && islower(*(p - 1)) && islower(*(p + 2))) { - if (!startswith(p + 2, "und ")) { // special case in German, as in "Lach- und Sachgeschichten" - memmove(p, p + 2, strlen(p + 2) + 1); - EpgBugFixStat(5, ChannelID()); - } - } - p++; - } - } #define MAX_USEFUL_EPISODE_LENGTH 40 // Some channels put a whole lot of information in the ShortText and leave |