Comments
diff --git a/src/hb-coretext.cc b/src/hb-coretext.cc
index 98592af..db6d2aa 100644
--- a/src/hb-coretext.cc
+++ b/src/hb-coretext.cc
@@ -155,15 +155,15 @@
CFRelease (last_resort_font_desc);
if (new_ct_font)
{
- // The CTFontCreateCopyWithAttributes call fails to stay on the same font
- // when reconfiguring the cascade list and may switch to a different font
- // when there are fonts that go by the same name, since the descriptor is
- // just name and size.
-
- // Avoid reconfiguring the cascade lists if the new font is outside the
- // system locations that we cannot access from the sandboxed renderer
- // process in Blink. This can be detected by the new file URL location
- // that the newly found font points to.
+ /* The CTFontCreateCopyWithAttributes call fails to stay on the same font
+ * when reconfiguring the cascade list and may switch to a different font
+ * when there are fonts that go by the same name, since the descriptor is
+ * just name and size.
+ *
+ * Avoid reconfiguring the cascade lists if the new font is outside the
+ * system locations that we cannot access from the sandboxed renderer
+ * process in Blink. This can be detected by the new file URL location
+ * that the newly found font points to. */
CFURLRef new_url = (CFURLRef)CTFontCopyAttribute(new_ct_font, kCTFontURLAttribute);
if (CFEqual(original_url, new_url)) {
CFRelease (ct_font);