mirror of https://gitlab.com/basile.b/dexed.git
fix, message from the stack trace printed on assert failure not clickable
This commit is contained in:
parent
e0f3d68ced
commit
08dbbc5196
|
@ -1,13 +1,17 @@
|
||||||
# v3.9.7-dev
|
# v3.9.7-dev
|
||||||
|
|
||||||
## Other
|
## Regressions
|
||||||
|
|
||||||
- compilation: FPC 3.2.0 now required to compile dexed.
|
- Messages, the messages matching to the call stack printed on assert failure were not clickable anymore. The regression was introduced when the support for GNU-style messages was added.
|
||||||
|
|
||||||
## Enhancements
|
## Enhancements
|
||||||
|
|
||||||
- Project menu, git: add the first line of last commit message as additional information, between square brackets, to the items of the list of branches. (#53)
|
- Project menu, git: add the first line of last commit message as additional information, between square brackets, to the items of the list of branches. (#53)
|
||||||
|
|
||||||
|
## Other
|
||||||
|
|
||||||
|
- compilation: FPC 3.2.0 now required to compile dexed.
|
||||||
|
|
||||||
# v3.9.6
|
# v3.9.6
|
||||||
|
|
||||||
## Enhancements
|
## Enhancements
|
||||||
|
|
|
@ -1245,7 +1245,7 @@ begin
|
||||||
gnuStyle := (rng.front = ':') and (not rng.empty) and (rng.popFront^.front in ['1'..'9']);
|
gnuStyle := (rng.front = ':') and (not rng.empty) and (rng.popFront^.front in ['1'..'9']);
|
||||||
if gnuStyle then
|
if gnuStyle then
|
||||||
begin
|
begin
|
||||||
lne := rng.takeUntil(':').yield;
|
lne := rng.takeUntil([':', ' ']).yield;
|
||||||
if rng.front = ':' then
|
if rng.front = ':' then
|
||||||
col := rng.popWhile(':')^.takeUntil(' ').yield;
|
col := rng.popWhile(':')^.takeUntil(' ').yield;
|
||||||
end else
|
end else
|
||||||
|
|
Loading…
Reference in New Issue