I think it may have been needed for platforms without weak symbols before
libXfont commit daa7af2bb2326de363, but that's in 1.4.0 and we already
require newer, so seems fine to drop now.   (Why that was ever weak and
overridable in the first place, I can't imagine.  It's not like different
programs have different definitions of ISO-8859-1 encoding.)

Reviewed-by: Alan Coopersmith <[email protected]>

On 05/ 8/14 10:28 AM, Julien Cristau wrote:
---
  difs/difsutils.c | 20 --------------------
  1 file changed, 20 deletions(-)

diff --git a/difs/difsutils.c b/difs/difsutils.c
index 0dd99b5..7e350c6 100644
--- a/difs/difsutils.c
+++ b/difs/difsutils.c
@@ -189,26 +189,6 @@ XpClientIsPrintClient(ClientPtr client, FontPathElementPtr 
fpe)
      return FALSE;
  }

-void
-CopyISOLatin1Lowered(char *d, const char *s, int length)
-{
-    register int i;
-    unsigned char *dest = (unsigned char *)d;
-    const unsigned char *source = (const unsigned char *)s;
-
-    for (i = 0; i < length; i++, source++, dest++) {
-       if ((*source >= XK_A) && (*source <= XK_Z))
-           *dest = *source + (XK_a - XK_A);
-       else if ((*source >= XK_Agrave) && (*source <= XK_Odiaeresis))
-           *dest = *source + (XK_agrave - XK_Agrave);
-       else if ((*source >= XK_Ooblique) && (*source <= XK_Thorn))
-           *dest = *source + (XK_oslash - XK_Ooblique);
-       else
-           *dest = *source;
-    }
-    *dest = '\0';
-}
-
  int
  strncmpnocase(
      const char *first,



--
        -Alan Coopersmith-              [email protected]
         Oracle Solaris Engineering - http://blogs.oracle.com/alanc
_______________________________________________
[email protected]: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel

Reply via email to