]> git.pld-linux.org Git - packages/vim.git/blob - 7.2.003
- new
[packages/vim.git] / 7.2.003
1 To: vim-dev@vim.org
2 Subject: Patch 7.2.003
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.2.003
11 Problem:    Typo in translated message.  Message not translated.
12 Solution:   Correct spelling. Add _(). (Dominique Pelle)
13 Files:      src/spell.c, src/version.c
14
15
16 *** ../vim-7.2.002/src/spell.c  Tue Jun 24 22:21:31 2008
17 --- src/spell.c Sun Aug 10 12:51:38 2008
18 ***************
19 *** 77,83 ****
20   
21   /*
22    * Do the opposite: based on a maximum end score and a known sound score,
23 !  * compute the the maximum word score that can be used.
24    */
25   #define MAXSCORE(word_score, sound_score) ((4 * word_score - sound_score) / 3)
26   
27 --- 77,83 ----
28   
29   /*
30    * Do the opposite: based on a maximum end score and a known sound score,
31 !  * compute the maximum word score that can be used.
32    */
33   #define MAXSCORE(word_score, sound_score) ((4 * word_score - sound_score) / 3)
34   
35 ***************
36 *** 625,631 ****
37   /* TRUE if a word appears in the list of banned words.  */
38   #define WAS_BANNED(su, word) (!HASHITEM_EMPTY(hash_find(&su->su_banned, word)))
39   
40 ! /* Number of suggestions kept when cleaning up.  we need to keep more than
41    * what is displayed, because when rescore_suggestions() is called the score
42    * may change and wrong suggestions may be removed later. */
43   #define SUG_CLEAN_COUNT(su)    ((su)->su_maxcount < 130 ? 150 : (su)->su_maxcount + 20)
44 --- 625,631 ----
45   /* TRUE if a word appears in the list of banned words.  */
46   #define WAS_BANNED(su, word) (!HASHITEM_EMPTY(hash_find(&su->su_banned, word)))
47   
48 ! /* Number of suggestions kept when cleaning up.  We need to keep more than
49    * what is displayed, because when rescore_suggestions() is called the score
50    * may change and wrong suggestions may be removed later. */
51   #define SUG_CLEAN_COUNT(su)    ((su)->su_maxcount < 130 ? 150 : (su)->su_maxcount + 20)
52 ***************
53 *** 5980,5986 ****
54         else if (spin->si_newprefID == 0 || spin->si_newprefID == 127)
55             MSG(_("Too many compound flags"));
56         else
57 !           MSG(_("Too many posponed prefixes and/or compound flags"));
58       }
59   
60       if (syllable != NULL)
61 --- 5980,5986 ----
62         else if (spin->si_newprefID == 0 || spin->si_newprefID == 127)
63             MSG(_("Too many compound flags"));
64         else
65 !           MSG(_("Too many postponed prefixes and/or compound flags"));
66       }
67   
68       if (syllable != NULL)
69 *** ../vim-7.2.002/src/version.c        Sun Aug 17 23:43:53 2008
70 --- src/version.c       Mon Aug 25 04:06:52 2008
71 ***************
72 *** 790,796 ****
73       MSG_PUTS(_("\nRISC OS version"));
74   #endif
75   #ifdef VMS
76 !     MSG_PUTS("\nOpenVMS version");
77   # ifdef HAVE_PATHDEF
78       if (*compiled_arch != NUL)
79       {
80 --- 792,798 ----
81       MSG_PUTS(_("\nRISC OS version"));
82   #endif
83   #ifdef VMS
84 !     MSG_PUTS(_("\nOpenVMS version"));
85   # ifdef HAVE_PATHDEF
86       if (*compiled_arch != NUL)
87       {
88 *** ../vim-7.2.002/src/version.c        Sun Aug 17 23:43:53 2008
89 --- src/version.c       Mon Aug 25 04:06:52 2008
90 ***************
91 *** 678,679 ****
92 --- 678,681 ----
93   {   /* Add new patch number below this line */
94 + /**/
95 +     3,
96   /**/
97
98 -- 
99 I learned the customs and mannerisms of engineers by observing them, much the
100 way Jane Goodall learned about the great apes, but without the hassle of
101 grooming.
102                                 (Scott Adams - The Dilbert principle)
103
104  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
105 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
106 \\\        download, build and distribute -- http://www.A-A-P.org        ///
107  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.073286 seconds and 3 git commands to generate.