aboutsummaryrefslogtreecommitdiff
path: root/vernac
diff options
context:
space:
mode:
authorMaxime Dénès2019-07-26 13:55:00 +0200
committerThéo Zimmermann2019-11-27 20:24:38 +0100
commit7f67c70bec6a13ed0e39548e4439f962ac5dcd79 (patch)
treeec347ee15b850fee0761a08fa2544e27478c5de0 /vernac
parent353b601323ffd7d5b4acc3c02de985b27cddc8e5 (diff)
Remove deprecated commands `AddPath`, `AddRecPath` and `DelPath`
Fixes #10576
Diffstat (limited to 'vernac')
-rw-r--r--vernac/g_vernac.mlg10
1 files changed, 1 insertions, 9 deletions
diff --git a/vernac/g_vernac.mlg b/vernac/g_vernac.mlg
index 3095ab3fe1..8d6724c3b1 100644
--- a/vernac/g_vernac.mlg
+++ b/vernac/g_vernac.mlg
@@ -939,15 +939,7 @@ GRAMMAR EXTEND Gram
| IDENT "Remove"; IDENT "LoadPath"; dir = ne_string ->
{ VernacRemoveLoadPath dir }
- (* For compatibility *)
- | IDENT "AddPath"; dir = ne_string; "as"; alias = as_dirpath ->
- { VernacAddLoadPath (false, dir, alias) }
- | IDENT "AddRecPath"; dir = ne_string; "as"; alias = as_dirpath ->
- { VernacAddLoadPath (true, dir, alias) }
- | IDENT "DelPath"; dir = ne_string ->
- { VernacRemoveLoadPath dir }
-
- (* Type-Checking (pas dans le refman) *)
+ (* Type-Checking *)
| "Type"; c = lconstr -> { VernacGlobalCheck c }
(* Printing (careful factorization of entries) *)