aboutsummaryrefslogtreecommitdiffhomepage
path: root/toplevel/himsg.ml
diff options
context:
space:
mode:
Diffstat (limited to 'toplevel/himsg.ml')
-rw-r--r--toplevel/himsg.ml19
1 files changed, 12 insertions, 7 deletions
diff --git a/toplevel/himsg.ml b/toplevel/himsg.ml
index 244174f65..13a6489b9 100644
--- a/toplevel/himsg.ml
+++ b/toplevel/himsg.ml
@@ -1307,12 +1307,17 @@ let extract_ltac_trace trace eloc =
else
(* We entered a primitive tactic, we don't display trace but
report on the finest location *)
+ let finer_loc loc1 loc2 = Loc.merge loc1 loc2 = loc2 in
let best_loc =
- if not (Loc.is_ghost eloc) then eloc else
- (* trace is with innermost call coming first *)
- let rec aux = function
- | (loc,_)::tail when not (Loc.is_ghost loc) -> loc
- | _::tail -> aux tail
- | [] -> Loc.ghost in
- aux trace in
+ (* trace is with innermost call coming first *)
+ let rec aux best_loc = function
+ | (loc,_)::tail ->
+ if Loc.is_ghost best_loc ||
+ not (Loc.is_ghost loc) && finer_loc loc best_loc
+ then
+ aux loc tail
+ else
+ aux best_loc tail
+ | [] -> best_loc in
+ aux eloc trace in
None, best_loc