Fix recently-broken lval formatter.

This commit is contained in:
Graydon Hoare 2010-06-30 15:12:42 -07:00
parent 6c3a2491d8
commit b450838c46
1 changed files with 2 additions and 0 deletions

View File

@ -874,6 +874,8 @@ and fmt_lval (ff:Format.formatter) (l:lval) : unit =
fmt ff ".";
fmt_name_component ff nc
| COMP_atom a ->
fmt_lval ff lv;
fmt ff ".";
fmt_bracketed "(" ")" fmt_atom ff a;
| COMP_deref ->
fmt ff "*";