From d059c3b5b25a7d815791ef0e035de3e70a539466 Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Mon, 31 Jan 2022 16:28:21 -0600 Subject: [PATCH] src/reader.cpp: Remove needless use of macro --- src/reader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reader.cpp b/src/reader.cpp index 23e10dba5..6bafe2878 100644 --- a/src/reader.cpp +++ b/src/reader.cpp @@ -1930,7 +1930,7 @@ maybe_t reader_data_t::get_selection() const { /// Characters that may not be part of a token that is to be replaced by a case insensitive /// completion. -#define REPLACE_UNCLEAN L"$*?({})" +const wchar_t *REPLACE_UNCLEAN = L"$*?({})"; /// Check if the specified string can be replaced by a case insensitive completion with the /// specified flags.