| 116 | } |
| 117 | #if INI_ALLOW_MULTILINE |
| 118 | else if (*prev_name && *start && start > line) { |
| 119 | /* Non-blank line with leading whitespace, treat as continuation |
| 120 | of previous name's value (as per Python configparser). */ |
| 121 | if (!handler(user, section, prev_name, start) && !error) |
| 122 | error = lineno; |
| 123 | } |
| 124 | #endif |
| 125 | else if (*start == '[') { |
| 126 | /* A "[section]" line */ |
no test coverage detected