diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-07-08 23:28:40 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-07-08 23:28:40 -0700 |
commit | 5a9c433211c15e2538086321057ea04da8d6f9b9 (patch) | |
tree | 9ec0261e9364c394ea1657cd79e26ccd804f3d6f /src/composite.c | |
parent | 2d43b8c9716af32033eb778d3fabb1a47dd44535 (diff) | |
download | emacs-5a9c433211c15e2538086321057ea04da8d6f9b9.tar.gz |
Fix minor problems found by static checking.
* chartab.c (char_table_set_range, map_sub_char_table)
(uniprop_table_uncompress): Remove unused locals.
(uniprop_table): Now static.
* composite.c (_work_char): Remove unused static var.
* gtkutil.c (qttip_cb): Remove stray no-effect statement.
Diffstat (limited to 'src/composite.c')
-rw-r--r-- | src/composite.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/composite.c b/src/composite.c index cf1e053f027..d402d5ad0c4 100644 --- a/src/composite.c +++ b/src/composite.c @@ -967,7 +967,6 @@ autocmp_chars (Lisp_Object rule, EMACS_INT charpos, EMACS_INT bytepos, EMACS_INT } static Lisp_Object _work_val; -static int _work_char; /* 1 iff the character C is composable. Characters of general category Z? or C? are not composable except for ZWNJ and ZWJ. */ |