~ubuntu-branches/ubuntu/utopic/vim/utopic

« back to all changes in this revision

Viewing changes to src/version.c

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2009-01-13 18:39:18 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20090113183918-kgq1jzdwsbbex4pq
Tags: 2:7.2.079-1ubuntu1
* Resynchronise with Debian (diversions fix closes LP: #296324). Remaining
  changes:
  - runtime/syntax/debcontrol.vim:
    + Add "metapackages" to the list of valid sections.
  - runtime/syntax/debchangelog.vim:
    + Add "jaunty" to the list of valid suites.
  - Drop vim-lesstif package and lesstif2-dev build-dependency.
  - Enable Python interpreter on basic builds.
  - Create a .pot file for translations.
  - Disable autoindent, line-wrapping, and backup files by default.
  - runtime/syntax/debsources.vim:
    + Add "jaunty" to debsourcesDistrKeyword
  - runtime/syntax/grub.vim:
    + Add Ubuntu-specific 'quiet' keyword.

Show diffs side-by-side

added added

removed removed

Lines of Context:
677
677
static int included_patches[] =
678
678
{   /* Add new patch number below this line */
679
679
/**/
 
680
    79,
 
681
/**/
 
682
    78,
 
683
/**/
 
684
    77,
 
685
/**/
 
686
    76,
 
687
/**/
 
688
    75,
 
689
/**/
 
690
    74,
 
691
/**/
 
692
    73,
 
693
/**/
 
694
    72,
 
695
/**/
 
696
    71,
 
697
/**/
 
698
    70,
 
699
/**/
 
700
    69,
 
701
/**/
 
702
    68,
 
703
/**/
 
704
    67,
 
705
/**/
 
706
    66,
 
707
/**/
 
708
    65,
 
709
/**/
 
710
    64,
 
711
/**/
 
712
    63,
 
713
/**/
 
714
    62,
 
715
/**/
 
716
    61,
 
717
/**/
 
718
    60,
 
719
/**/
 
720
    59,
 
721
/**/
 
722
    58,
 
723
/**/
 
724
    57,
 
725
/**/
 
726
    56,
 
727
/**/
 
728
    55,
 
729
/**/
 
730
    54,
 
731
/**/
 
732
    53,
 
733
/**/
 
734
    52,
 
735
/**/
 
736
    51,
 
737
/**/
 
738
    50,
 
739
/**/
 
740
    49,
 
741
/**/
 
742
    48,
 
743
/**/
 
744
    47,
 
745
/**/
 
746
    46,
 
747
/**/
 
748
    45,
 
749
/**/
 
750
    44,
 
751
/**/
 
752
    43,
 
753
/**/
 
754
    42,
 
755
/**/
 
756
    41,
 
757
/**/
 
758
    40,
 
759
/**/
 
760
    39,
 
761
/**/
 
762
    38,
 
763
/**/
 
764
    37,
 
765
/**/
 
766
    36,
 
767
/**/
 
768
    35,
 
769
/**/
 
770
    34,
 
771
/**/
 
772
    33,
 
773
/**/
 
774
    32,
 
775
/**/
 
776
    31,
 
777
/**/
 
778
    30,
 
779
/**/
 
780
    29,
 
781
/**/
 
782
    28,
 
783
/**/
 
784
    27,
 
785
/**/
 
786
    26,
 
787
/**/
680
788
    25,
681
789
/**/
682
790
    24,
730
838
    0
731
839
};
732
840
 
 
841
/*
 
842
 * Place to put a short description when adding a feature with a patch.
 
843
 * Keep it short, e.g.,: "relative numbers", "persistent undo".
 
844
 * Also add a comment marker to separate the lines.
 
845
 * See the official Vim patches for the diff format: It must use a context of
 
846
 * one line only.  Create it by hand or use "diff -C2" and edit the patch.
 
847
 */
 
848
static char *(extra_patches[]) =
 
849
{   /* Add your patch description below this line */
 
850
/**/
 
851
    NULL
 
852
};
 
853
 
733
854
    int
734
855
highest_patch()
735
856
{
875
996
        }
876
997
    }
877
998
 
 
999
    /* Print the list of extra patch descriptions if there is at least one. */
 
1000
    if (extra_patches[0] != NULL)
 
1001
    {
 
1002
        MSG_PUTS(_("\nExtra patches: "));
 
1003
        s = "";
 
1004
        for (i = 0; extra_patches[i] != NULL; ++i)
 
1005
        {
 
1006
            MSG_PUTS(s);
 
1007
            s = ", ";
 
1008
            MSG_PUTS(extra_patches[i]);
 
1009
        }
 
1010
    }
 
1011
 
878
1012
#ifdef MODIFIED_BY
879
1013
    MSG_PUTS("\n");
880
1014
    MSG_PUTS(_("Modified by "));