aboutsummaryrefslogtreecommitdiffhomepage
path: root/parsing
diff options
context:
space:
mode:
Diffstat (limited to 'parsing')
-rw-r--r--parsing/g_vernac.ml42
-rw-r--r--parsing/ppvernac.ml3
2 files changed, 2 insertions, 3 deletions
diff --git a/parsing/g_vernac.ml4 b/parsing/g_vernac.ml4
index 8174271d9..4c9056f09 100644
--- a/parsing/g_vernac.ml4
+++ b/parsing/g_vernac.ml4
@@ -605,7 +605,7 @@ GEXTEND Gram
| IDENT "Section"; s = global -> PrintSectionContext s
| IDENT "Grammar"; ent = IDENT ->
(* This should be in "syntax" section but is here for factorization*)
- PrintGrammar ("", ent)
+ PrintGrammar ent
| IDENT "LoadPath" -> PrintLoadPath
| IDENT "Modules" -> PrintModules
diff --git a/parsing/ppvernac.ml b/parsing/ppvernac.ml
index 1b8123695..7d4104db3 100644
--- a/parsing/ppvernac.ml
+++ b/parsing/ppvernac.ml
@@ -788,8 +788,7 @@ let rec pr_vernac = function
| PrintFullContext -> str"Print All"
| PrintSectionContext s ->
str"Print Section" ++ spc() ++ Libnames.pr_reference s
- | PrintGrammar (uni,ent) ->
- msgerrnl (str "warning: no direct translation of Print Grammar entry");
+ | PrintGrammar ent ->
str"Print Grammar" ++ spc() ++ str ent
| PrintLoadPath -> str"Print LoadPath"
| PrintModules -> str"Print Modules"