← Back to team overview

ayatana-commits team mailing list archive

[Branch ~notify-osd-developers/notify-osd/main] Rev 407: fixed a small regression regarding newline-character replacement in the text_filter() call

 

------------------------------------------------------------
revno: 407
committer: Mirco Müller <mirco.mueller@xxxxxxxxxx>
branch nick: notify-osd
timestamp: Tue 2009-10-06 16:22:08 -0400
message:
  fixed a small regression regarding newline-character replacement in the text_filter() call
modified:
  src/util.c


--
lp:notify-osd
https://code.launchpad.net/~notify-osd-developers/notify-osd/main

Your team ayatana-commits is subscribed to branch lp:notify-osd.
To unsubscribe from this branch go to https://code.launchpad.net/~notify-osd-developers/notify-osd/main/+edit-subscription.
=== modified file 'src/util.c'
--- src/util.c	2009-10-01 08:34:39 +0000
+++ src/util.c	2009-10-06 20:22:08 +0000
@@ -103,7 +103,7 @@
 		{ CHARACTER_GT_REGEX, ">" },
 		{ CHARACTER_APOS_REGEX, "'" },
 		{ CHARACTER_QUOT_REGEX, "\"" },
-		{ CHARACTER_NEWLINE_REGEX, " " }
+		{ CHARACTER_NEWLINE_REGEX, "\n" }
 		};
 
 	ReplaceMarkupData* ptr = data;