summaryrefslogtreecommitdiff
path: root/tfm/tfm_ligature.c
blob: 4e3db36d43a05cae0e4c72e755b0cc9c345d482f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* tfm_ligature.c: deal with TFM ligature lists.

Copyright (C) 1992 Free Software Foundation, Inc.

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */

#include "config.h"

#include "tfm.h"


/* The character RIGHT may or may not be in LIG_LIST already.
   Update it if so, otherwise add it.  */

void
tfm_set_ligature (list_type *lig_list, charcode_type right, charcode_type l)
{
  unsigned this_right;
  tfm_ligature_type *new_ligature;
  
  for (this_right = 0; this_right < LIST_SIZE (*lig_list); this_right++)
    {
      tfm_ligature_type *ligature = LIST_ELT (*lig_list, this_right);

      if (ligature->character == right)
	{
	  ligature->ligature = l;
          return;
        }
    }

  /* RIGHT wasn't in the existing list.  Add it to the end.  */
  new_ligature = LIST_TAPPEND (lig_list, tfm_ligature_type);
  new_ligature->character = right;
  new_ligature->ligature = l;
}