From c59119e0b77d08fcaab7a620920e565baa06aee7 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Sat, 2 May 2015 17:54:32 -0700 Subject: [PATCH] Correct a reference to the wrong issue. 613, not 163! --- reader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reader.cpp b/reader.cpp index 7e0c7e18c..2700da0fd 100644 --- a/reader.cpp +++ b/reader.cpp @@ -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)))