summaryrefslogtreecommitdiff
path: root/pango/break.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2005-01-04 19:20:25 +0000
committerOwen Taylor <otaylor@src.gnome.org>2005-01-04 19:20:25 +0000
commit565464d67374c649287821c918c18aa581e4f930 (patch)
tree080888b38f2ba39e1b16adeb1991e9b85f2a94cd /pango/break.c
parent14ef5f403d305b65ac4b1cb889055ad345ab7af2 (diff)
downloadpango-565464d67374c649287821c918c18aa581e4f930.tar.gz
Fix trailing comma in enum (#162618)
Tue Jan 4 14:14:28 2005 Owen Taylor <otaylor@redhat.com> * pango/break.c (enum): Fix trailing comma in enum (#162618)
Diffstat (limited to 'pango/break.c')
-rw-r--r--pango/break.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/break.c b/pango/break.c
index f617b76c..9b08dece 100644
--- a/pango/break.c
+++ b/pango/break.c
@@ -32,7 +32,7 @@ typedef enum
BREAK_ALREADY_HANDLED, /* didn't use the table */
BREAK_PROHIBITED, /* no break, even if spaces intervene */
BREAK_IF_SPACES, /* "indirect break" (only if there are spaces) */
- BREAK_ALLOWED, /* "direct break" (can always break here) */
+ BREAK_ALLOWED /* "direct break" (can always break here) */
/* TR 14 has one more break-opportunity class,
* "indirect break opportunity for combining marks following a space"
* but we handle that inline in the code.