Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Add missing format parsing #234

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Add missing format parsing #234

wants to merge 2 commits into from

Commits on Apr 26, 2017

  1. Add missing format parsing

    for printf format:
     - %m will print strerror(errno)
    
    for scanf format:
     - optional 'm' can be used with string conversions
     - [ is a valid conversion specifier
    
    literal %:
     - do not match when literal % is used with other
       flags
    
    known bug: the following is not be hilighted properly:
    printf("%ms");
    the 's' it not part of the conversion specifier in
    this case but is when used with scanf.
    Frédéric Nadeau, ing committed Apr 26, 2017
    Configuration menu
    Copy the full SHA
    0fdd4b1 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2017

  1. Rewrite string_placeholder's regex

    Frédéric Nadeau, ing committed Oct 31, 2017
    Configuration menu
    Copy the full SHA
    9d9f54b View commit details
    Browse the repository at this point in the history