kernel-doc (b0d60bfbb60cef1efd699a65e29a94487f8c7b1f) | kernel-doc (344fdb28a0dfac2e42925f149029748b34d2effa) |
---|---|
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> ## --- 235 unchanged lines hidden (view full) --- 244# rst-mode 245my @highlights_rst = ( 246 [$type_constant, "``\$1``"], 247 [$type_constant2, "``\$1``"], 248 # Note: need to escape () to avoid func matching later 249 [$type_member_func, "\\:c\\:type\\:`\$1\$2\$3\\\\(\\\\) <\$1>`"], 250 [$type_member, "\\:c\\:type\\:`\$1\$2\$3 <\$1>`"], 251 [$type_fp_param, "**\$1\\\\(\\\\)**"], | 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> ## --- 235 unchanged lines hidden (view full) --- 244# rst-mode 245my @highlights_rst = ( 246 [$type_constant, "``\$1``"], 247 [$type_constant2, "``\$1``"], 248 # Note: need to escape () to avoid func matching later 249 [$type_member_func, "\\:c\\:type\\:`\$1\$2\$3\\\\(\\\\) <\$1>`"], 250 [$type_member, "\\:c\\:type\\:`\$1\$2\$3 <\$1>`"], 251 [$type_fp_param, "**\$1\\\\(\\\\)**"], |
252 [$type_func, "\\:c\\:func\\:`\$1()`"], | 252 [$type_func, "\$1()"], |
253 [$type_enum, "\\:c\\:type\\:`\$1 <\$2>`"], 254 [$type_struct, "\\:c\\:type\\:`\$1 <\$2>`"], 255 [$type_typedef, "\\:c\\:type\\:`\$1 <\$2>`"], 256 [$type_union, "\\:c\\:type\\:`\$1 <\$2>`"], 257 # in rst this can refer to any type 258 [$type_fallback, "\\:c\\:type\\:`\$1`"], 259 [$type_param, "**\$1**"] 260 ); --- 1965 unchanged lines hidden --- | 253 [$type_enum, "\\:c\\:type\\:`\$1 <\$2>`"], 254 [$type_struct, "\\:c\\:type\\:`\$1 <\$2>`"], 255 [$type_typedef, "\\:c\\:type\\:`\$1 <\$2>`"], 256 [$type_union, "\\:c\\:type\\:`\$1 <\$2>`"], 257 # in rst this can refer to any type 258 [$type_fallback, "\\:c\\:type\\:`\$1`"], 259 [$type_param, "**\$1**"] 260 ); --- 1965 unchanged lines hidden --- |