Correct a reference to the wrong issue. 613, not 163!

This commit is contained in:
ridiculousfish 2015-05-02 17:54:32 -07:00
parent 0748a4d8b6
commit c59119e0b7

View File

@ -3561,7 +3561,7 @@ const wchar_t *reader_readline(int nchars)
/* We only execute the command line */
editable_line_t *el = &data->command_line;
/* Allow backslash-escaped newlines, but only if the following character is whitespace, or we're at the end of the text (see issue #163) */
/* Allow backslash-escaped newlines, but only if the following character is whitespace, or we're at the end of the text (see issue #613) */
if (is_backslashed(el->text, el->position))
{
if (el->position >= el->size() || iswspace(el->text.at(el->position)))