]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 8.1.1202: always get regexp debugging logs when building with -DDEBUG v8.1.1202
authorBram Moolenaar <Bram@vim.org>
Thu, 25 Apr 2019 18:07:51 +0000 (20:07 +0200)
committerBram Moolenaar <Bram@vim.org>
Thu, 25 Apr 2019 18:07:51 +0000 (20:07 +0200)
Problem:    Always get regexp debugging logs when building with -DDEBUG.
Solution:   By default do not create regexp debugging logs. (Ken Takata)

src/regexp.c
src/version.c

index 0a6695cef54b9eb76a543ce0fbf8dd376984e464..ceeb899ad2a030d39793b4c2883a63778abfa899 100644 (file)
  * 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"
 
index 2fcdef1a6ef2e3c8f9a61690abce1ce52fe2ee38..f865c3d59347ee5e1c18c241016ccfa41fa42236 100644 (file)
@@ -771,6 +771,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1202,
 /**/
     1201,
 /**/