Changeset 4220 for trunk/src/charset.h
- Timestamp:
- 04/04/08 22:04:40 (8 months ago)
- Files:
-
- trunk/src/charset.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/charset.h
r4190 r4220 1 1 /* Header for multibyte character handler. 2 2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 3 2006, 2007 Free Software Foundation, Inc.3 2006, 2007, 2008 Free Software Foundation, Inc. 4 4 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 5 2005, 2006, 2007 5 2005, 2006, 2007, 2008 6 6 National Institute of Advanced Industrial Science and Technology (AIST) 7 7 Registration Number H14PRO021 … … 11 11 GNU Emacs is free software; you can redistribute it and/or modify 12 12 it under the terms of the GNU General Public License as published by 13 the Free Software Foundation; either version 2, or (at your option)13 the Free Software Foundation; either version 3, or (at your option) 14 14 any later version. 15 15 … … 414 414 415 415 416 /* If GENERICP is nonzero, return nonzero if fC is a valid normal or417 generic character. If GENERICP is zero, return nonzero if fC is a416 /* If GENERICP is nonzero, return nonzero if C is a valid normal or 417 generic character. If GENERICP is zero, return nonzero if C is a 418 418 valid normal character. */ 419 419 #define CHAR_VALID_P(c, genericp) \ … … 451 451 (! NILP (CHARSET_TABLE_ENTRY (code))) 452 452 453 /* Return 1 if fthe byte sequence at unibyte string STR (LENGTH bytes)453 /* Return 1 if the byte sequence at unibyte string STR (LENGTH bytes) 454 454 is valid as a multibyte form. If valid, by a side effect, BYTES is 455 455 set to the byte length of the multibyte form. */ … … 472 472 473 473 474 /* Return 1 if fthe byte sequence at multibyte string STR is valid as474 /* Return 1 if the byte sequence at multibyte string STR is valid as 475 475 a unibyte form. By a side effect, BYTES is set to the byte length 476 476 of one character at STR. */ … … 500 500 c2 = -1))) 501 501 502 /* Return 1 if fcharacter C has valid printable glyph. */502 /* Return 1 if character C has valid printable glyph. */ 503 503 #define CHAR_PRINTABLE_P(c) (ASCII_BYTE_P (c) || char_printable_p (c)) 504 504
