| 2532 | /* Debug LINE by underlining its keys. */ |
| 2533 | |
| 2534 | static void |
| 2535 | debug_line (struct line const *line) |
| 2536 | { |
| 2537 | struct keyfield const *key = keylist; |
| 2538 | |
| 2539 | do |
| 2540 | debug_key (line, key); |
| 2541 | while (key && ((key = key->next) || ! (unique || stable))); |
| 2542 | } |
| 2543 | |
| 2544 | /* Return whether sorting options specified for key. */ |
| 2545 |
no test coverage detected