kernel-doc (42ac0be18bfa09c03f52244f7c3e15c89b38532f) | kernel-doc (e5a5276695b0df12eea8a694afc8bca87a8162a4) |
---|---|
1#!/usr/bin/env perl 2# SPDX-License-Identifier: GPL-2.0 3 4use warnings; 5use strict; 6 7## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ## 8## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ## --- 2317 unchanged lines hidden (view full) --- 2326 ++$errors; 2327 return; 2328 } 2329 2330 $. = 1; 2331 2332 $section_counter = 0; 2333 while (<IN_FILE>) { | 1#!/usr/bin/env perl 2# SPDX-License-Identifier: GPL-2.0 3 4use warnings; 5use strict; 6 7## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ## 8## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ## --- 2317 unchanged lines hidden (view full) --- 2326 ++$errors; 2327 return; 2328 } 2329 2330 $. = 1; 2331 2332 $section_counter = 0; 2333 while (<IN_FILE>) { |
2334 while (s/\\\s*$//) { | 2334 while (!/^ \*/ && s/\\\s*$//) { |
2335 $_ .= <IN_FILE>; 2336 } 2337 # Replace tabs by spaces 2338 while ($_ =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e) {}; 2339 # Hand this line to the appropriate state handler 2340 if ($state == STATE_NORMAL) { 2341 process_normal(); 2342 } elsif ($state == STATE_NAME) { --- 198 unchanged lines hidden --- | 2335 $_ .= <IN_FILE>; 2336 } 2337 # Replace tabs by spaces 2338 while ($_ =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e) {}; 2339 # Hand this line to the appropriate state handler 2340 if ($state == STATE_NORMAL) { 2341 process_normal(); 2342 } elsif ($state == STATE_NAME) { --- 198 unchanged lines hidden --- |