mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug #917
- Fixed bug #917, which mis-encoded quotes (thanks to Uli Martens). - Added unit tests. - Minor unrelated edits.
This commit is contained in:
parent
89b5c91a35
commit
2ce9322a28
5 changed files with 70 additions and 8 deletions
|
@ -67,10 +67,10 @@ Nibbler::Nibbler (const std::string& input)
|
|||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
Nibbler::Nibbler (const Nibbler& other)
|
||||
: _input (other._input)
|
||||
, _length (other._length)
|
||||
, _cursor (other._cursor)
|
||||
{
|
||||
_input = other._input;
|
||||
_length = other._length;
|
||||
_cursor = other._cursor;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue