mirror of https://github.com/tildeclub/ex-vi.git
* Traditional regular expressions sometimes failed to operate correctly
since the last release.
This commit is contained in:
parent
b0a749c10a
commit
c13aadbd6a
2
Changes
2
Changes
|
@ -3,6 +3,8 @@ Release ...
|
||||||
screen after an insertion.
|
screen after an insertion.
|
||||||
* The 'p' command now works correctly if the buffer contains a partial line
|
* The 'p' command now works correctly if the buffer contains a partial line
|
||||||
with multibyte characters.
|
with multibyte characters.
|
||||||
|
* Traditional regular expressions sometimes failed to operate correctly
|
||||||
|
since the last release.
|
||||||
|
|
||||||
Release 2/25/05
|
Release 2/25/05
|
||||||
* Traditional regular expressions can now be used with multibyte characters.
|
* Traditional regular expressions can now be used with multibyte characters.
|
||||||
|
|
3
ex_re.c
3
ex_re.c
|
@ -73,7 +73,7 @@
|
||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
#ifdef DOSCCS
|
#ifdef DOSCCS
|
||||||
static char sccsid[] = "@(#)ex_re.c 1.55 (gritter) 2/20/05";
|
static char sccsid[] = "@(#)ex_re.c 1.56 (gritter) 3/25/05";
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -1305,6 +1305,7 @@ execute(int gf, line *addr)
|
||||||
compile1();
|
compile1();
|
||||||
if (value(IGNORECASE))
|
if (value(IGNORECASE))
|
||||||
loconv(linebuf, linebuf);
|
loconv(linebuf, linebuf);
|
||||||
|
locs = 0;
|
||||||
}
|
}
|
||||||
circf = re.Circfl;
|
circf = re.Circfl;
|
||||||
return step(p, re.Expbuf);
|
return step(p, re.Expbuf);
|
||||||
|
|
Loading…
Reference in New Issue