Skip to content

Commit

Permalink
Backport PR coq#17495: Remove leftover "redoing byextend" debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
Zimmi48 committed May 16, 2023
2 parents 7c7041d + d3a22f2 commit bce0c29
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 5 additions & 0 deletions doc/changelog/13-misc/17495-byextendmsg.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- **Fixed:**
an impossible to turn off debug message "backtracking and redoing byextend on ..."
(`#17495 <https://github.com/coq/coq/pull/17495>`_,
fixes `#17488 <https://github.com/coq/coq/issues/17488>`_,
by Gaëtan Gilbert).
1 change: 0 additions & 1 deletion parsing/pcoq.ml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ let rec remove_grammars n =
camlp5_state := t;
remove_grammars (n-1)
| ByEXTEND (name, undo,redo)::t ->
Feedback.msg_info Pp.(str "backtracking and redoing byextend on " ++ str name);
undo();
camlp5_state := t;
remove_grammars n;
Expand Down

0 comments on commit bce0c29

Please sign in to comment.