kernel-doc (7057bb975dab827997e0ca9dd92cafef0856b0cc) | kernel-doc (a8dae20b1d39dd2785ff7f746338b1b9e51e3335) |
---|---|
1#!/usr/bin/env perl 2 3use warnings; 4use strict; 5 6## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ## 7## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ## 8## Copyright (C) 2001 Simon Huggins ## --- 1859 unchanged lines hidden (view full) --- 1868 if ( $1 eq "" ) { 1869 $section = $section_intro; 1870 } else { 1871 $section = $1; 1872 } 1873 } 1874 elsif (/$doc_decl/o) { 1875 $identifier = $1; | 1#!/usr/bin/env perl 2 3use warnings; 4use strict; 5 6## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ## 7## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ## 8## Copyright (C) 2001 Simon Huggins ## --- 1859 unchanged lines hidden (view full) --- 1868 if ( $1 eq "" ) { 1869 $section = $section_intro; 1870 } else { 1871 $section = $1; 1872 } 1873 } 1874 elsif (/$doc_decl/o) { 1875 $identifier = $1; |
1876 if (/\s*([\w\s]+?)\s*-/) { | 1876 if (/\s*([\w\s]+?)(\(\))?\s*-/) { |
1877 $identifier = $1; 1878 } 1879 1880 $state = STATE_FIELD; 1881 # if there's no @param blocks need to set up default section 1882 # here 1883 $contents = ""; 1884 $section = $section_default; --- 273 unchanged lines hidden --- | 1877 $identifier = $1; 1878 } 1879 1880 $state = STATE_FIELD; 1881 # if there's no @param blocks need to set up default section 1882 # here 1883 $contents = ""; 1884 $section = $section_default; --- 273 unchanged lines hidden --- |