aboutsummaryrefslogtreecommitdiff
path: root/text.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-22 06:09:07 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-22 06:09:07 +0200
commit637b1adbdda1af761518b90b52fb6ae7798584bc (patch)
tree01c10bf0b2c573ce65806e80e4a2ddb0daecd66e /text.c
parentddd80ea3ca108858ebd053339871c6fa251f9a8d (diff)
downloadvis-637b1adbdda1af761518b90b52fb6ae7798584bc.tar.gz
vis-637b1adbdda1af761518b90b52fb6ae7798584bc.tar.xz
Add support for the '<', '>' marks
Diffstat (limited to 'text.c')
-rw-r--r--text.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/text.c b/text.c
index e613ccb..fdcf1cf 100644
--- a/text.c
+++ b/text.c
@@ -120,7 +120,7 @@ struct Text {
struct stat info; /* stat as proped on load time */
int fd; /* the file descriptor of the original mmap-ed data */
LineCache lines; /* mapping between absolute pos in bytes and logical line breaks */
- const char *marks[26]; /* a mark is a pointer into an underlying buffer */
+ const char *marks[32]; /* a mark is a pointer into an underlying buffer */
int newlines; /* 0: unknown, 1: \n, -1: \r\n */
};