aboutsummaryrefslogtreecommitdiffhomepage
path: root/grammar
diff options
context:
space:
mode:
authorGravatar Matej Kosik <matej.kosik@inria.fr>2017-05-27 22:05:03 +0200
committerGravatar Matej Kosik <matej.kosik@inria.fr>2017-05-30 09:36:45 +0200
commitce84f518a210237804779c8840b2783e1f5d8e56 (patch)
tree46a631b5df0482a4f1dcfa31f6fa2e3ab9a764d4 /grammar
parent0336d4d19d446315cb922149b8ee4e7885843be0 (diff)
make the expansion of the "DECLARE PLUGIN" closer to the way how a human would write that code
Diffstat (limited to 'grammar')
-rw-r--r--grammar/vernacextend.mlp2
1 files changed, 1 insertions, 1 deletions
diff --git a/grammar/vernacextend.mlp b/grammar/vernacextend.mlp
index 4f9a7c75c..798b46523 100644
--- a/grammar/vernacextend.mlp
+++ b/grammar/vernacextend.mlp
@@ -143,7 +143,7 @@ EXTEND
| "DECLARE"; "PLUGIN"; name = STRING ->
declare_str_items loc [
<:str_item< value __coq_plugin_name = $str:name$ >>;
- <:str_item< value _ = Mltop.add_known_module $str:name$ >>;
+ <:str_item< value _ = Mltop.add_known_module __coq_plugin_name >>;
]
] ]
;