X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/d7aff0d6929c16d15992304dd44c5f528df8f895..0e963201d03d9229bb8ac4323291d2b0119526ed:/src/composite.h diff --git a/src/composite.h b/src/composite.h index 9026d03f7b..1423feb92b 100644 --- a/src/composite.h +++ b/src/composite.h @@ -1,5 +1,5 @@ /* Header for composite sequence handler. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2016 Free Software Foundation, Inc. Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 National Institute of Advanced Industrial Science and Technology (AIST) Registration Number H14PRO021 @@ -112,7 +112,7 @@ composition_registered_p (Lisp_Object prop) gref = (rule_code) / 12; \ if (gref > 12) gref = 11; \ nref = (rule_code) % 12; \ - } while (0) + } while (false) /* Like COMPOSITION_DECODE_REFS (RULE_CODE, GREF, NREF), but also decode RULE_CODE into XOFF and YOFF (vertical offset). */ @@ -122,7 +122,7 @@ composition_registered_p (Lisp_Object prop) xoff = (rule_code) >> 16; \ yoff = ((rule_code) >> 8) & 0xFF; \ COMPOSITION_DECODE_REFS (rule_code, gref, nref); \ - } while (0) + } while (false) /* Nonzero if the global reference point GREF and new reference point NREF are valid. */ @@ -156,7 +156,7 @@ struct composition { /* How many columns the overall glyphs occupy on the screen. This gives an approximate value for column calculation in Fcurrent_column, and etc. */ - unsigned short width; + int width; /* Method of the composition. */ enum composition_method method; @@ -190,7 +190,6 @@ extern ptrdiff_t n_compositions; #define CHECK_BORDER (CHECK_HEAD | CHECK_TAIL) #define CHECK_ALL (CHECK_BORDER | CHECK_INSIDE) -extern Lisp_Object Qcomposition; extern Lisp_Object composition_hash_table; extern ptrdiff_t get_composition_id (ptrdiff_t, ptrdiff_t, ptrdiff_t, Lisp_Object, Lisp_Object);