comparison src/version.c @ 1760:f3d3545d6bf6 v7.2.058

updated for version 7.2-058
author vimboss
date Sun, 30 Nov 2008 11:15:09 +0000
parents 04fc2a0e98ed
children 0836531167ab
comparison
equal deleted inserted replaced
1759:04fc2a0e98ed 1760:f3d3545d6bf6
675 }; 675 };
676 676
677 static int included_patches[] = 677 static int included_patches[] =
678 { /* Add new patch number below this line */ 678 { /* Add new patch number below this line */
679 /**/ 679 /**/
680 58,
681 /**/
680 57, 682 57,
681 /**/ 683 /**/
682 56, 684 56,
683 /**/ 685 /**/
684 55, 686 55,
790 2, 792 2,
791 /**/ 793 /**/
792 1, 794 1,
793 /**/ 795 /**/
794 0 796 0
797 };
798
799 /*
800 * Place to put a short description when adding a feature with a patch.
801 * Keep it short, e.g.,: "relative numbers", "persistent undo".
802 * Also add a comment marker to separate the lines.
803 * See the official Vim patches for the diff format: It must use a context of
804 * one line only. Use "diff -C2".
805 */
806 static char *(extra_patches[]) =
807 { /* Add your patch description below this line */
808 /**/
809 NULL
795 }; 810 };
796 811
797 int 812 int
798 highest_patch() 813 highest_patch()
799 { 814 {
934 MSG_PUTS("-"); 949 MSG_PUTS("-");
935 msg_outnum((long)included_patches[i]); 950 msg_outnum((long)included_patches[i]);
936 } 951 }
937 first = -1; 952 first = -1;
938 } 953 }
954 }
955 }
956
957 /* Print the list of extra patch descriptions if there is at least one. */
958 if (extra_patches[0] != NULL)
959 {
960 MSG_PUTS(_("\nExtra patches: "));
961 s = "";
962 for (i = 0; extra_patches[i] != NULL; ++i)
963 {
964 MSG_PUTS(s);
965 s = ", ";
966 MSG_PUTS(extra_patches[i]);
939 } 967 }
940 } 968 }
941 969
942 #ifdef MODIFIED_BY 970 #ifdef MODIFIED_BY
943 MSG_PUTS("\n"); 971 MSG_PUTS("\n");