Title: [103171] trunk/Tools
Revision
103171
Author
[email protected]
Date
2011-12-18 06:43:14 -0800 (Sun, 18 Dec 2011)

Log Message

REGRESSION(r103149): prepare-ChangeLog outputs a warning
https://bugs.webkit.org/show_bug.cgi?id=74808

Reviewed by David Kilzer.

Added the prototype declaration of main() to avoid warning messages.
Sorted subroutine declarations in the alphabetical order.

* Scripts/prepare-ChangeLog:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (103170 => 103171)


--- trunk/Tools/ChangeLog	2011-12-18 11:02:16 UTC (rev 103170)
+++ trunk/Tools/ChangeLog	2011-12-18 14:43:14 UTC (rev 103171)
@@ -1,3 +1,15 @@
+2011-12-18  Kentaro Hara  <[email protected]>
+
+        REGRESSION(r103149): prepare-ChangeLog outputs a warning
+        https://bugs.webkit.org/show_bug.cgi?id=74808
+
+        Reviewed by David Kilzer.
+
+        Added the prototype declaration of main() to avoid warning messages.
+        Sorted subroutine declarations in the alphabetical order.
+
+        * Scripts/prepare-ChangeLog:
+
 2011-12-17  Adenilson Cavalcanti  <[email protected]>
 
         [Qt] Fix QtTestBrowser compilation with QtWidgets module

Modified: trunk/Tools/Scripts/prepare-ChangeLog (103170 => 103171)


--- trunk/Tools/Scripts/prepare-ChangeLog	2011-12-18 11:02:16 UTC (rev 103170)
+++ trunk/Tools/Scripts/prepare-ChangeLog	2011-12-18 14:43:14 UTC (rev 103171)
@@ -67,42 +67,43 @@
 sub changeLogDate($);
 sub changeLogEmailAddressFromArgs($$);
 sub changeLogNameFromArgs($$);
+sub createPatchCommand($$$$);
+sub decodeEntities($);
+sub determinePropertyChanges($$$);
+sub diffCommand($$$$);
+sub diffFromToString($$$);
+sub diffHeaderFormat();
+sub extractLineRange($);
 sub fetchBugDescriptionFromURL($$);
 sub findChangeLogs($);
-sub getLatestChangeLogs($);
-sub resolveConflictedChangeLogs($);
-sub generateNewChangeLogs($$$$$$$$$$$);
-sub printDiff($$$$);
-sub openChangeLogs($);
-sub diffFromToString($$$);
-sub diffCommand($$$$);
-sub statusCommand($$$$);
-sub createPatchCommand($$$$);
-sub diffHeaderFormat();
 sub findOriginalFileFromSvn($);
-sub determinePropertyChanges($$$);
-sub pluralizeAndList($$@);
 sub generateFileList(\%$$$);
 sub generateFunctionLists($$$$$);
-sub isUnmodifiedStatus($);
-sub isModifiedStatus($);
-sub isAddedStatus($);
-sub isConflictStatus($$$);
-sub statusDescription($$$$);
-sub propertyChangeDescription($);
-sub extractLineRange($);
-sub testListForChangeLog(@);
+sub generateNewChangeLogs($$$$$$$$$$$);
+sub getLatestChangeLogs($);
 sub get_function_line_ranges($$);
 sub get_function_line_ranges_for_c($$);
 sub get_function_line_ranges_for_java($$);
 sub get_function_line_ranges_for_javascript($$);
 sub get_function_line_ranges_for_perl($$);
 sub get_selector_line_ranges_for_css($$);
+sub isAddedStatus($);
+sub isConflictStatus($$$);
+sub isModifiedStatus($);
+sub isUnmodifiedStatus($);
+sub main();
 sub method_decl_to_selector($);
+sub normalizeLineEndings($$);
+sub openChangeLogs($);
+sub pluralizeAndList($$@);
+sub printDiff($$$$);
 sub processPaths(\@);
+sub propertyChangeDescription($);
+sub resolveConflictedChangeLogs($);
 sub reviewerAndDescriptionForGitCommit($$);
-sub normalizeLineEndings($$);
-sub decodeEntities($);
+sub statusCommand($$$$);
+sub statusDescription($$$$);
+sub testListForChangeLog(@);
 
 ### Constant variables.
 # Project time zone for Cupertino, CA, US
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to