Mercurial > hg > xemacs-beta
diff src/font-mgr.c @ 4849:5eacb04a2e62
Fix parentheses.
See xemacs-beta message <87r5ptluih.fsf@topper.koldfront.dk>.
author | Jerry James <james@xemacs.org> |
---|---|
date | Wed, 13 Jan 2010 12:00:49 -0700 |
parents | b3ea9c582280 |
children | edc0cd26b4a8 |
line wrap: on
line diff
--- a/src/font-mgr.c Wed Jan 13 10:50:47 2010 -0700 +++ b/src/font-mgr.c Wed Jan 13 12:00:49 2010 -0700 @@ -783,7 +783,7 @@ if (FcConfigAppFontAddFile (XFCCONFIG_PTR (config), /* #### FIXME! is Qfile_name right? */ - (FcChar8 *) NEW_LISP_STRING_TO_EXTERNAL (file, Qfile_name) == FcFalse) + (FcChar8 *) NEW_LISP_STRING_TO_EXTERNAL (file, Qfile_name)) == FcFalse) return Qnil; else return Qt; @@ -802,7 +802,7 @@ if (FcConfigAppFontAddDir (XFCCONFIG_PTR (config), /* #### FIXME! is Qfile_name right? */ - (FcChar8 *) NEW_LISP_STRING_TO_EXTERNAL (dir), Qfile_name) == FcFalse) + (FcChar8 *) NEW_LISP_STRING_TO_EXTERNAL (dir, Qfile_name)) == FcFalse) return Qnil; else return Qt;