summaryrefslogtreecommitdiff
path: root/src/regexp.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-04-25 20:07:51 +0200
committerBram Moolenaar <Bram@vim.org>2019-04-25 20:07:51 +0200
commitc2d09c9f2ce487a6971af9306e382d7b38805456 (patch)
treee6bf1f20e8a0de753f667a5885accfdadbc4a640 /src/regexp.c
parent725310d89e1ba268bf410472b7de054c6c260161 (diff)
downloadvim-git-c2d09c9f2ce487a6971af9306e382d7b38805456.tar.gz
patch 8.1.1202: always get regexp debugging logs when building with -DDEBUGv8.1.1202
Problem: Always get regexp debugging logs when building with -DDEBUG. Solution: By default do not create regexp debugging logs. (Ken Takata)
Diffstat (limited to 'src/regexp.c')
-rw-r--r--src/regexp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/regexp.c b/src/regexp.c
index 0a6695cef..ceeb899ad 100644
--- a/src/regexp.c
+++ b/src/regexp.c
@@ -38,11 +38,11 @@
* Named character class support added by Walter Briscoe (1998 Jul 01)
*/
-/* Uncomment the first if you do not want to see debugging logs or files
- * related to regular expressions, even when compiling with -DDEBUG.
- * Uncomment the second to get the regexp debugging. */
-/* #undef DEBUG */
-/* #define DEBUG */
+// By default: do not create debugging logs or files related to regular
+// expressions, even when compiling with -DDEBUG.
+// Uncomment the second line to get the regexp debugging.
+#undef DEBUG
+// #define DEBUG
#include "vim.h"