diff options
Diffstat (limited to 'parsing/esyntax.ml')
| -rw-r--r-- | parsing/esyntax.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parsing/esyntax.ml b/parsing/esyntax.ml index cc4e60d43f..2c0541f4ce 100644 --- a/parsing/esyntax.ml +++ b/parsing/esyntax.ml @@ -192,7 +192,7 @@ let print_delimiters inh se strm = function if is_letter (left.[String.length left -1]) then str " " else mt () in let rspace = let c = right.[0] in - if is_letter c or is_digit c or c = '\'' then str " " else mt () in + if is_ident_tail c then str " " else mt () in hov 0 (str left ++ lspace ++ strm ++ rspace ++ str right) (* Print the syntax entry. In the unparsing hunks, the tokens are |
