Summary: | %n expansion is broken in command aliases | ||
---|---|---|---|
Product: | [Applications] konversation | Reporter: | Ismail Donmez <ismail> |
Component: | general | Assignee: | Konversation Developers <konversation-devel> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Ismail Donmez
2005-06-08 10:54:08 UTC
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()) |