blob: 01e78877e7fce356830c427e2098ea3e5187f7ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
To: vim_dev@googlegroups.com
Subject: Patch 8.1.1202
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------
Patch 8.1.1202
Problem: Always get regexp debugging logs when building with -DDEBUG.
Solution: By default do not create regexp debugging logs. (Ken Takata)
Files: src/regexp.c
*** ../vim-8.1.1201/src/regexp.c 2019-03-21 21:45:30.883282076 +0100
--- src/regexp.c 2019-04-25 20:04:55.452435740 +0200
***************
*** 38,48 ****
* 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 */
#include "vim.h"
--- 38,48 ----
* Named character class support added by Walter Briscoe (1998 Jul 01)
*/
! // 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"
*** ../vim-8.1.1201/src/version.c 2019-04-24 23:08:20.082079954 +0200
--- src/version.c 2019-04-25 20:05:50.439610356 +0200
***************
*** 773,774 ****
--- 773,776 ----
{ /* Add new patch number below this line */
+ /**/
+ 1202,
/**/
--
'I generally avoid temptation unless I can't resist it."
-- Mae West
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|