ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/encoding.C
(Generate patch)

Comparing rxvt-unicode/src/encoding.C (file contents):
Revision 1.30 by sf-exg, Sat Dec 18 18:17:38 2010 UTC vs.
Revision 1.32 by sf-exg, Mon May 30 18:39:03 2011 UTC

1/*----------------------------------------------------------------------* 1/*----------------------------------------------------------------------*
2 * File: encoding.C 2 * File: encoding.C
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * 4 *
5 * All portions of code are copyright by their respective author/s. 5 * All portions of code are copyright by their respective author/s.
6 * Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com> 6 * Copyright (c) 2003-2006 Marc Lehmann <schmorp@schmorp.de>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or 10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version. 11 * (at your option) any later version.
286 286
287unicode_t 287unicode_t
288rxvt_compose (unicode_t c1, unicode_t c2) 288rxvt_compose (unicode_t c1, unicode_t c2)
289{ 289{
290 int l = 0; 290 int l = 0;
291 int r = ARRAY_LENGTH(rxvt_compose_table) - 1; 291 int r = ecb_array_length (rxvt_compose_table) - 1;
292 int m; 292 int m;
293 293
294 while (r >= l) 294 while (r >= l)
295 { 295 {
296 m = (l + r) / 2; 296 m = (l + r) / 2;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines