=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/less/charset.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- src/usr.bin/less/charset.h 2015/11/05 22:08:43 1.2 +++ src/usr.bin/less/charset.h 2015/11/06 15:50:33 1.3 @@ -1,15 +1,14 @@ /* * Copyright (C) 1984-2012 Mark Nudelman + * Modified for use with illumos by Garrett D'Amore. + * Copyright 2014 Garrett D'Amore * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ -/* - * Modified for use with illumos. - * Copyright 2014 Garrett D'Amore - */ + #define IS_ASCII_OCTET(c) (((c) & 0x80) == 0) #define IS_UTF8_TRAIL(c) (((c) & 0xC0) == 0x80) #define IS_UTF8_LEAD2(c) (((c) & 0xE0) == 0xC0)