• Show log

    Commit

  • Hash : b3b6a39d
    Author : Patrick Steinhardt
    Date : 2019-06-07T11:12:54

    attr_file: account for escaped escapes when searching trailing space When determining the trailing space length, we need to honor whether spaces are escaped or not. Currently, we do not check whether the escape itself is escaped, though, which might generate an off-by-one in that case as we will simply treat the space as escaped. Fix this by checking whether the backslashes preceding the space are themselves escaped.