mirror of
https://github.com/tildeclub/ex-vi.git
synced 2026-01-24 02:10:19 +00:00
* Traditional regular expressions sometimes failed to operate correctly
since the last release.
This commit is contained in:
2
Changes
2
Changes
@@ -3,6 +3,8 @@ Release ...
|
||||
screen after an insertion.
|
||||
* The 'p' command now works correctly if the buffer contains a partial line
|
||||
with multibyte characters.
|
||||
* Traditional regular expressions sometimes failed to operate correctly
|
||||
since the last release.
|
||||
|
||||
Release 2/25/05
|
||||
* Traditional regular expressions can now be used with multibyte characters.
|
||||
|
||||
3
ex_re.c
3
ex_re.c
@@ -73,7 +73,7 @@
|
||||
|
||||
#ifndef lint
|
||||
#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
|
||||
|
||||
@@ -1305,6 +1305,7 @@ execute(int gf, line *addr)
|
||||
compile1();
|
||||
if (value(IGNORECASE))
|
||||
loconv(linebuf, linebuf);
|
||||
locs = 0;
|
||||
}
|
||||
circf = re.Circfl;
|
||||
return step(p, re.Expbuf);
|
||||
|
||||
Reference in New Issue
Block a user