kernel-doc (9e72184b55df2b5b8ebdcf0470bd43ef32dc518f) kernel-doc (a19bce6433c2566dd210f4245525c297ca952574)
1#!/usr/bin/perl -w
2
3use strict;
4
5## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ##
6## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ##
7## Copyright (C) 2001 Simon Huggins ##
8## Copyright (C) 2005-2012 Randy Dunlap ##

--- 266 unchanged lines hidden (view full) ---

275 [$type_struct, "\$1"],
276 [$type_param, "\$1"]
277 );
278my $blankline_text = "";
279
280# rst-mode
281my @highlights_rst = (
282 [$type_constant, "``\$1``"],
1#!/usr/bin/perl -w
2
3use strict;
4
5## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ##
6## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ##
7## Copyright (C) 2001 Simon Huggins ##
8## Copyright (C) 2005-2012 Randy Dunlap ##

--- 266 unchanged lines hidden (view full) ---

275 [$type_struct, "\$1"],
276 [$type_param, "\$1"]
277 );
278my $blankline_text = "";
279
280# rst-mode
281my @highlights_rst = (
282 [$type_constant, "``\$1``"],
283 [$type_func, "\\:c\\:func\\:`\$1`"],
283 [$type_func, "\\:c\\:func\\:`\$1()`"],
284 [$type_struct_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"],
285 [$type_enum_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"],
286 [$type_struct, "\\:c\\:type\\:`struct \$1 <\$1>`"],
287 [$type_param, "**\$1**"]
288 );
289my $blankline_rst = "\n";
290
291# list mode

--- 2726 unchanged lines hidden ---
284 [$type_struct_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"],
285 [$type_enum_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"],
286 [$type_struct, "\\:c\\:type\\:`struct \$1 <\$1>`"],
287 [$type_param, "**\$1**"]
288 );
289my $blankline_rst = "\n";
290
291# list mode

--- 2726 unchanged lines hidden ---