ftmodapi.h: Replace 0xA0 characters with spaces.

This commit is contained in:
Werner Lemberg 2020-12-17 22:47:05 +01:00
parent c948df52e4
commit 7bdf386e75
1 changed files with 12 additions and 12 deletions

View File

@ -332,20 +332,20 @@ FT_BEGIN_HEADER
/**************************************************************************
  *
  * @macro:
  *   FT_FACE_DRIVER_NAME
  *
  * @description:
  *   A macro that retrieves the name of a font driver from a face object.
  *
  * @note:
  *   The font driver name is a valid `module_name` for @FT_Property_Set
*
* @macro:
* FT_FACE_DRIVER_NAME
*
* @description:
* A macro that retrieves the name of a font driver from a face object.
*
* @note:
* The font driver name is a valid `module_name` for @FT_Property_Set
* and @FT_Property_Get. This is not the same as @FT_Get_Font_Format.
  *
  */
*
*/
#define FT_FACE_DRIVER_NAME( face ) \
         ( ( *(FT_Module_Class**)( ( face )->driver ) )->module_name )
( ( *(FT_Module_Class**)( ( face )->driver ) )->module_name )
/**************************************************************************