aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-11-23 11:12:22 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-11-23 11:12:22 -0800
commit4837a2d0dfef1f2a7370b2765a9442a5deab4f36 (patch)
tree816bcb90df7f4c67d37ba8aca5a344c336ea0a5b /reader.cpp
parentbe80e1a86389271d87d333001d0625c13647ba00 (diff)
Replaced some usage of wchar_t * with wcstring in complete(). Some style fixes.
Diffstat (limited to 'reader.cpp')
-rw-r--r--reader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/reader.cpp b/reader.cpp
index af7e2e97..70a1897c 100644
--- a/reader.cpp
+++ b/reader.cpp
@@ -1187,7 +1187,7 @@ struct autosuggestion_context_t
if (! cursor_at_end && iswspace(last_char))
return 0;
- // On the other hand, if the line ends with a quote, don't go dumping stuff after the quote
+ /* On the other hand, if the line ends with a quote, don't go dumping stuff after the quote */
if (wcschr(L"'\"", last_char) && cursor_at_end)
return 0;