diff options
author | Paul LeoNerd Evans <leonerd@leonerd.org.uk> | 2012-01-18 16:29:29 +0000 |
---|---|---|
committer | Paul LeoNerd Evans <leonerd@leonerd.org.uk> | 2012-01-18 16:29:29 +0000 |
commit | 3981920938ee0d1f9a720c7208f6248cbcf0ae35 (patch) | |
tree | a71eb2976b06bf5584dc61b8011d68fbd6ac67c2 | |
parent | 242da047a053db00bbcfd77810ca2a70e4e7dcab (diff) | |
download | termo-3981920938ee0d1f9a720c7208f6248cbcf0ae35.tar.gz termo-3981920938ee0d1f9a720c7208f6248cbcf0ae35.tar.xz termo-3981920938ee0d1f9a720c7208f6248cbcf0ae35.zip |
Delete trailing comma in enum{} to keep C++ happy
-rw-r--r-- | termkey.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/termkey.h.in b/termkey.h.in index 4c7270f..d61afb5 100644 --- a/termkey.h.in +++ b/termkey.h.in @@ -151,7 +151,7 @@ enum { enum { TERMKEY_CANON_SPACESYMBOL = 1 << 0, /* Space is symbolic rather than Unicode */ - TERMKEY_CANON_DELBS = 1 << 1, /* Del is converted to Backspace */ + TERMKEY_CANON_DELBS = 1 << 1 /* Del is converted to Backspace */ }; void termkey_check_version(int major, int minor); |