blob: f84af3bb3b104a00937b34d15ec7a0cc6b74a985 (
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
61
62
63
64
65
66
67
68
69
|
To: vim_dev@googlegroups.com
Subject: Patch 8.1.0097
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.0097
Problem: Superfluous space before exclamation mark.
Solution: Remove the space. Don't translate debug message.
Files: src/regexp_nfa.c
*** ../vim-8.1.0096/src/regexp_nfa.c 2018-06-20 20:37:32.469561678 +0200
--- src/regexp_nfa.c 2018-06-22 21:38:58.460097521 +0200
***************
*** 2989,2995 ****
fclose(df);
}
#endif
! EMSG(_("E874: (NFA) Could not pop the stack !"));
}
/*
--- 2989,2995 ----
fclose(df);
}
#endif
! EMSG(_("E874: (NFA) Could not pop the stack!"));
}
/*
***************
*** 5593,5599 ****
debug = fopen(NFA_REGEXP_DEBUG_LOG, "a");
if (debug == NULL)
{
! EMSG2(_("(NFA) COULD NOT OPEN %s !"), NFA_REGEXP_DEBUG_LOG);
return FALSE;
}
#endif
--- 5593,5599 ----
debug = fopen(NFA_REGEXP_DEBUG_LOG, "a");
if (debug == NULL)
{
! EMSG2("(NFA) COULD NOT OPEN %s!", NFA_REGEXP_DEBUG_LOG);
return FALSE;
}
#endif
*** ../vim-8.1.0096/src/version.c 2018-06-22 21:30:27.355186506 +0200
--- src/version.c 2018-06-22 21:39:55.343753790 +0200
***************
*** 763,764 ****
--- 763,766 ----
{ /* Add new patch number below this line */
+ /**/
+ 97,
/**/
--
I AM THANKFUL...
...for the taxes that I pay because it means that I am employed.
/// 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 ///
|