freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Git][freetype/freetype][master] Fix help message of apinames.


From: suzuki toshiya (@mpsuzuki)
Subject: [Git][freetype/freetype][master] Fix help message of apinames.
Date: Thu, 10 Oct 2024 07:32:01 +0000

suzuki toshiya pushed to branch master at FreeType / FreeType

Commits:

  • 0dd4eef6
    by Suzuki, Toshiya (鈴木俊哉) at 2024-10-10T15:56:22+09:00
    Fix help message of apinames.
    
    * src/tools/apinames.c: The first header file must be
      given after the options.  All arguments after the
      first header file are dealt as header files to be
      parsed, regardless with their leading "-".
    
      For example,
      "apinames include/freetype/freetype.h -dFREETYPE.DLL"
      warns "unable to open -dFREETYPE.DLL".
    
      Thus, the "header1" must be given after the arguments
      to be parsed as the options.
    

1 changed file:

Changes:

  • src/tools/apinames.c
    ... ... @@ -380,7 +380,7 @@ usage( void )
    380 380
         "It receives a list of header files as an argument and\n"
    
    381 381
         "generates a sorted list of unique identifiers in various formats.\n"
    
    382 382
         "\n"
    
    383
    -    "usage: %s header1 [options] [header2 ...]\n"
    
    383
    +    "usage: %s [options] header1 [header2 ...]\n"
    
    384 384
         "\n"
    
    385 385
         "options:   -       parse the contents of stdin, ignore arguments\n"
    
    386 386
         "           -v      verbose mode, output sent to standard error\n"
    


  • reply via email to

    [Prev in Thread] Current Thread [Next in Thread]