kernel-doc (a19bce6433c2566dd210f4245525c297ca952574) kernel-doc (a7291e7e03f8b45a4b028a410063dc94f9bff8c0)
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 ##

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

278my $blankline_text = "";
279
280# rst-mode
281my @highlights_rst = (
282 [$type_constant, "``\$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>`"],
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 ##

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

278my $blankline_text = "";
279
280# rst-mode
281my @highlights_rst = (
282 [$type_constant, "``\$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>`"],
286 # in rst this can refer to any type
287 [$type_struct, "\\:c\\:type\\:`\$1`"],
287 [$type_param, "**\$1**"]
288 );
289my $blankline_rst = "\n";
290
291# list mode
292my @highlights_list = (
293 [$type_constant, "\$1"],
294 [$type_func, "\$1"],

--- 2723 unchanged lines hidden ---
288 [$type_param, "**\$1**"]
289 );
290my $blankline_rst = "\n";
291
292# list mode
293my @highlights_list = (
294 [$type_constant, "\$1"],
295 [$type_func, "\$1"],

--- 2723 unchanged lines hidden ---