summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/dged/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dged/buffer.c b/src/dged/buffer.c
index ee11d6f..0120cb0 100644
--- a/src/dged/buffer.c
+++ b/src/dged/buffer.c
@@ -264,7 +264,7 @@ static void write_line(struct text_chunk *chunk, void *userdata) {
static bool is_word_break(uint8_t c) {
return c == ' ' || c == '.' || c == '(' || c == ')' || c == '[' || c == ']' ||
- c == '{' || c == '}' || c == ';';
+ c == '{' || c == '}' || c == ';' || c == '<' || c == '>' || c == ':';
}
static bool is_word_char(uint8_t c) { return !is_word_break(c); }