~ubuntu-branches/ubuntu/utopic/coreutils/utopic-proposed

« back to all changes in this revision

Viewing changes to lib/diacrit.c

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2012-11-28 03:03:42 UTC
  • mfrom: (8.3.4 sid)
  • Revision ID: package-import@ubuntu.com-20121128030342-21zanj8354gas5gr
Tags: 8.20-3ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Make 'uname -i -p' return the real processor/hardware, instead of
    unknown.
  - Build-depend on gettext:any instead of on gettext, so that apt-get can
    properly resolve build-dependencies on the tool when cross-building.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Diacritics processing for a few character codes.
2
2
 
3
 
   Copyright (C) 1990-1993, 2000, 2006, 2009-2011 Free Software Foundation,
 
3
   Copyright (C) 1990-1993, 2000, 2006, 2009-2012 Free Software Foundation,
4
4
   Inc.
5
5
 
6
6
   François Pinard <pinard@iro.umontreal.ca>, 1988.
94
94
 
95
95
/*------------------------------------------------------------------------.
96
96
| For each alphabetic character, returns a code of what its diacritic is, |
97
 
| according to the following codes: 1 (eE) over aA for latin diphtongs; 2 |
98
 
| (') acute accent; 3 (`) grave accent; 4 (^) circumflex accent; 5 (")    |
99
 
| umlaut or diaraesis; 6 (~) tilda; 7 (,) cedilla; 8 (o) covering degree  |
 
97
| according to the following codes: 1 (eE) over aA for latin diphthongs;  |
 
98
| 2 (') acute accent; 3 (`) grave accent; 4 (^) circumflex accent; 5 (")  |
 
99
| umlaut or diaeresis; 6 (~) tilda; 7 (,) cedilla; 8 (o) covering degree  |
100
100
| symbol; 9 (|) slashed character.                                        |
101
101
`------------------------------------------------------------------------*/
102
102