Version: (using KDE Devel) Installed from: Compiled sources OS: Linux Originally reported by jreuter@suse.de, %n expansion is broken in 0.18 release.
SVN commit 423386 by cartman: Fix %n expansion BUG:107022 CCMAIL:jreuter@suse.de M +1 -2 outputfilter.cpp --- trunk/extragear/network/konversation/src/outputfilter.cpp #423385:423386 @@ -95,9 +95,8 @@ destination=name; QString inputLine(originalLine); - inputLine.remove("\n"); - if(inputLine.isEmpty()) + if(inputLine.isEmpty() || inputLine == "\n") return result; if(!KonversationApplication::preferences.getDisableExpansion())