diff options
author | Xin LI <delphij@FreeBSD.org> | 2012-06-26 23:17:33 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2012-06-26 23:17:33 +0000 |
commit | 96e55cc72dd4e73f9c43872899beb615aeeed4b6 (patch) | |
tree | 1acc67942c59e279c426e0a72ee0ad94cb0ed3ba /contrib/less/charset.h | |
parent | a8f682ad5500847360950d85a257a25d2fbe94df (diff) | |
parent | ae8c2162b0f1c1823dae013469f900b9882b77a2 (diff) | |
download | src-96e55cc72dd4e73f9c43872899beb615aeeed4b6.tar.gz src-96e55cc72dd4e73f9c43872899beb615aeeed4b6.zip |
MFV: less v449.
Notes
Notes:
svn path=/head/; revision=237613
Diffstat (limited to 'contrib/less/charset.h')
-rw-r--r-- | contrib/less/charset.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/contrib/less/charset.h b/contrib/less/charset.h index 8ccf748df09e..0ae636646a93 100644 --- a/contrib/less/charset.h +++ b/contrib/less/charset.h @@ -1,12 +1,11 @@ -/* - * Copyright (C) 2005-2011 Mark Nudelman - * - * 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 about less, or for information on how to - * contact the author, see the README file. - */ +/*
+ * Copyright (C) 1984-2012 Mark Nudelman
+ *
+ * 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.
+ */
#define IS_ASCII_OCTET(c) (((c) & 0x80) == 0) #define IS_UTF8_TRAIL(c) (((c) & 0xC0) == 0x80) |