Module: wine
Branch: master
Commit: ab36da264b2fd986df398e76a940f0035f61bd09
URL: http://source.winehq.org/git/wine.git/?a=commit;h=ab36da264b2fd986df398e76a…
Author: Aric Stewart <aric(a)codeweavers.com>
Date: Tue Jun 7 10:55:22 2011 -0500
usp10: Gurmukhi has Ras but no Ralf. So do not treat them as a lex_Ra for reordering.
---
dlls/usp10/shape.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/usp10/shape.c b/dlls/usp10/shape.c
index 80ac191..36ed75a 100644
--- a/dlls/usp10/shape.c
+++ b/dlls/usp10/shape.c
@@ -2210,10 +2210,10 @@ static int gurmukhi_lex(WCHAR c)
{
switch (c)
{
- case 0x0A2f: return lex_Consonant;
case 0x0A30:
case 0x0A35:
- case 0x0A39: return lex_Ra;
+ case 0x0A39:
+ case 0x0A2f: return lex_Consonant;
case 0x0A3C: return lex_Nukta;
case 0x0A3F: return lex_Matra_pre;
case 0x0A03:
Module: wine
Branch: master
Commit: 38fcf687c2c70f19bbaf2edf6aa3527823bf3896
URL: http://source.winehq.org/git/wine.git/?a=commit;h=38fcf687c2c70f19bbaf2edf6…
Author: André Hentschel <nerv(a)dawncrow.de>
Date: Mon Jun 6 22:23:16 2011 +0200
c2man: Better detect that the file is in use.
---
tools/c2man.pl | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/tools/c2man.pl b/tools/c2man.pl
index bc25683..8030bc4 100755
--- a/tools/c2man.pl
+++ b/tools/c2man.pl
@@ -419,6 +419,9 @@ sub process_source_file($)
if ($parse_state == 4) # Reading in the function definition
{
+ # This file is used by the DLL - Make sure we get our contributors right
+ push (@{$spec_files{$comment->{DLL_NAME}}[0]->{SOURCES}},$comment->{FILE});
+
push (@{$comment->{PROTOTYPE}},$_);
# Strip comments from the line before checking for ')'
my $stripped_line = $_;
@@ -681,9 +684,6 @@ sub process_comment($)
$spec_details->{NUM_DOCS}++;
@$export[$EXPORT_FLAGS] |= $FLAG_DOCUMENTED;
- # This file is used by the DLL - Make sure we get our contributors right
- push (@{$spec_details->{SOURCES}},$comment->{FILE});
-
# If we have parameter comments in the prototype, extract them
my @parameter_comments;
for (@{$comment->{PROTOTYPE}})