From: Jouni Malinen Date: Sun, 4 Jan 2009 12:25:58 +0000 (+0200) Subject: Remove unwanted wpa_supplicant -> struct wpa_supplicant links X-Git-Tag: hostap_0_6_7~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=842e11d0bd06f11374897de7fd17edca0991c1a8;p=thirdparty%2Fhostap.git Remove unwanted wpa_supplicant -> struct wpa_supplicant links Replace " wpa_supplicant" with " %wpa_supplicant" except for "struct wpa_supplicant". This makes it easier to write Doxygen comments since there is no need to add the ugly '%' prefix to each instance of wpa_supplicant text showing up. --- diff --git a/wpa_supplicant/doc/kerneldoc2doxygen.pl b/wpa_supplicant/doc/kerneldoc2doxygen.pl index 68835a1dd..61bc367b4 100755 --- a/wpa_supplicant/doc/kerneldoc2doxygen.pl +++ b/wpa_supplicant/doc/kerneldoc2doxygen.pl @@ -20,7 +20,7 @@ # ########################################################################## # Copyright (C) 2003 Jonathan Foster -# Copyright (C) 2005 Jouni Malinen +# Copyright (C) 2005-2008 Jouni Malinen # (modified for kerneldoc format used in wpa_supplicant) # # This program is free software; you can redistribute it and/or modify @@ -70,6 +70,11 @@ sub fixcomment { $t = $_[0]; + # wpa_supplicant -> %wpa_supplicant except for struct wpa_supplicant + $t =~ s/struct wpa_supplicant/struct STRUCTwpa_supplicant/sg; + $t =~ s/ wpa_supplicant/ \%wpa_supplicant/sg; + $t =~ s/struct STRUCTwpa_supplicant/struct wpa_supplicant/sg; + # " * func: foo" --> "\brief foo\n" # " * struct bar: foo" --> "\brief foo\n" # If this fails, not a kernel-doc comment ==> return unmodified.