Module: wine Branch: master Commit: dcabc064fc520280352cd851cba26d07d4c84648 URL: http://source.winehq.org/git/wine.git/?a=commit;h=dcabc064fc520280352cd851cb...
Author: Jon Griffiths jon_p_griffiths@yahoo.com Date: Thu Jul 3 14:25:38 2008 -0700
c2man: Don't mangle 'dll' when its part of another word.
---
tools/c2man.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tools/c2man.pl b/tools/c2man.pl index 30c2186..4272b73 100755 --- a/tools/c2man.pl +++ b/tools/c2man.pl @@ -513,7 +513,7 @@ sub process_comment_text($) # Preferred capitalisations s/ wine| WINE/ Wine/g; s/ API | api / Api /g; - s/DLL|Dll/dll /g; + s/ DLL | Dll / dll /g; s/ URL | url / Url /g; s/WIN16|win16/Win16/g; s/WIN32|win32/Win32/g;