updated for version 7.2.389
Problem:    synIDattr() cannot return the font.
Solution:   Support the "font" argument. (Christian Brabandt)
diff --git a/src/eval.c b/src/eval.c
index 87333c2..f9babb3 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -16627,7 +16627,7 @@
 		    p = highlight_has_attr(id, HL_BOLD, modec);
 		break;
 
-	case 'f':					/* fg[#] */
+	case 'f':					/* fg[#] or font */
 		p = highlight_color(id, what, modec);
 		break;