diff options
| author | Emilio Jesus Gallego Arias | 2019-11-27 23:34:56 +0100 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2019-11-27 23:34:56 +0100 |
| commit | d2a995927ccb01dae73960780c7fa0fed0a37e6d (patch) | |
| tree | 2895a7b5681c7507bfc07929189c7fa0ca29cf77 /vernac | |
| parent | ac99c6aba0091d5c1ee9511508e25d399425b61b (diff) | |
| parent | 2f33fce7ac580d1966476d6d2c0f06a3ec920e6d (diff) | |
Merge PR #11187: Remove deprecated commands `AddPath`, `AddRecPath` and `DelPath`
Reviewed-by: ejgallego
Diffstat (limited to 'vernac')
| -rw-r--r-- | vernac/g_vernac.mlg | 10 |
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) *) |
