summaryrefslogtreecommitdiff
path: root/src/libvterm/bin/vterm-dump.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-04-24 18:39:14 +0200
committerBram Moolenaar <Bram@vim.org>2018-04-24 18:39:14 +0200
commitb691de05f69905fe417f583083d7e3cc16eb865e (patch)
tree3b778eceb899758865bb575701d73b036bd6c99d /src/libvterm/bin/vterm-dump.c
parent73658317bacd9a0264dfaa32288de6ea1f236fe5 (diff)
downloadvim-git-b691de05f69905fe417f583083d7e3cc16eb865e.tar.gz
patch 8.0.1757: unnecessary changes in libvtermv8.0.1757
Problem: Unnecessary changes in libvterm. Solution: Bring back // comments and trailing comma in enums.
Diffstat (limited to 'src/libvterm/bin/vterm-dump.c')
-rw-r--r--src/libvterm/bin/vterm-dump.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/libvterm/bin/vterm-dump.c b/src/libvterm/bin/vterm-dump.c
index 9d0edf492..a299d9c93 100644
--- a/src/libvterm/bin/vterm-dump.c
+++ b/src/libvterm/bin/vterm-dump.c
@@ -1,4 +1,4 @@
-/* Require getopt(3) */
+// Require getopt(3)
#define _XOPEN_SOURCE
#include <stdio.h>
@@ -22,28 +22,28 @@ static int parser_text(const char bytes[], size_t len, void *user)
int i;
for(i = 0; i < len; /* none */) {
- if(b[i] < 0x20) /* C0 */
+ if(b[i] < 0x20) // C0
break;
- else if(b[i] < 0x80) /* ASCII */
+ else if(b[i] < 0x80) // ASCII
i++;
- else if(b[i] < 0xa0) /* C1 */
+ else if(b[i] < 0xa0) // C1
break;
- else if(b[i] < 0xc0) /* UTF-8 continuation */
+ else if(b[i] < 0xc0) // UTF-8 continuation
break;
- else if(b[i] < 0xe0) { /* UTF-8 2-byte */
- /* 2-byte UTF-8 */
+ else if(b[i] < 0xe0) { // UTF-8 2-byte
+ // 2-byte UTF-8
if(len < i+2) break;
i += 2;
}
- else if(b[i] < 0xf0) { /* UTF-8 3-byte */
+ else if(b[i] < 0xf0) { // UTF-8 3-byte
if(len < i+3) break;
i += 3;
}
- else if(b[i] < 0xf8) { /* UTF-8 4-byte */
+ else if(b[i] < 0xf8) { // UTF-8 4-byte
if(len < i+4) break;
i += 4;
}
- else /* otherwise invalid */
+ else // otherwise invalid
break;
}
@@ -200,7 +200,7 @@ int main(int argc, char *argv[])
file = argv[optind++];
if(!file || streq(file, "-"))
- fd = 0; /* stdin */
+ fd = 0; // stdin
else {
fd = open(file, O_RDONLY);
if(fd == -1) {