aboutsummaryrefslogtreecommitdiff
path: root/plugins/ltac/pptactic.ml
diff options
context:
space:
mode:
authorMaxime Dénès2017-10-09 15:38:20 +0200
committerMaxime Dénès2017-10-09 15:38:20 +0200
commit81753dcda29bf7d7ecd6c8c0ddb3347f4cd49766 (patch)
tree8af2a8e24a87fb5dea0bb6dc2feadd6b0e06fd3b /plugins/ltac/pptactic.ml
parentd5534aab708e5d3bd6c3633dc9d028016eeb3076 (diff)
parent347d94a4b966d0cc4a3a04814b0c76c4b05caa11 (diff)
Merge PR #1114: Generic handling of nameable objects for plugins
Diffstat (limited to 'plugins/ltac/pptactic.ml')
-rw-r--r--plugins/ltac/pptactic.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ltac/pptactic.ml b/plugins/ltac/pptactic.ml
index d8bd166208..d588c888c4 100644
--- a/plugins/ltac/pptactic.ml
+++ b/plugins/ltac/pptactic.ml
@@ -336,7 +336,7 @@ type 'a extra_genarg_printer =
let pr_ltac_constant kn =
if !Flags.in_debugger then KerName.print kn
else try
- pr_qualid (Nametab.shortest_qualid_of_tactic kn)
+ pr_qualid (Tacenv.shortest_qualid_of_tactic kn)
with Not_found -> (* local tactic not accessible anymore *)
str "<" ++ KerName.print kn ++ str ">"