diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/awk.c | 2 | ||||
-rw-r--r-- | editors/diff.c | 2 | ||||
-rw-r--r-- | editors/vi.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/editors/awk.c b/editors/awk.c index 42f6ef866..3224788c0 100644 --- a/editors/awk.c +++ b/editors/awk.c | |||
@@ -155,7 +155,7 @@ typedef struct tsplitter_s { | |||
155 | 155 | ||
156 | /* simple token classes */ | 156 | /* simple token classes */ |
157 | /* Order and hex values are very important!!! See next_token() */ | 157 | /* Order and hex values are very important!!! See next_token() */ |
158 | #define TC_SEQSTART 1 /* ( */ | 158 | #define TC_SEQSTART 1 /* ( */ |
159 | #define TC_SEQTERM (1 << 1) /* ) */ | 159 | #define TC_SEQTERM (1 << 1) /* ) */ |
160 | #define TC_REGEXP (1 << 2) /* /.../ */ | 160 | #define TC_REGEXP (1 << 2) /* /.../ */ |
161 | #define TC_OUTRDR (1 << 3) /* | > >> */ | 161 | #define TC_OUTRDR (1 << 3) /* | > >> */ |
diff --git a/editors/diff.c b/editors/diff.c index 3a3334640..b08ded3a1 100644 --- a/editors/diff.c +++ b/editors/diff.c | |||
@@ -843,7 +843,7 @@ static void diffdir(char *p[2], const char *s_start) | |||
843 | * add_to_dirlist will remove it. */ | 843 | * add_to_dirlist will remove it. */ |
844 | list[i].len = strlen(p[i]); | 844 | list[i].len = strlen(p[i]); |
845 | recursive_action(p[i], ACTION_RECURSE | ACTION_FOLLOWLINKS, | 845 | recursive_action(p[i], ACTION_RECURSE | ACTION_FOLLOWLINKS, |
846 | add_to_dirlist, skip_dir, &list[i], 0); | 846 | add_to_dirlist, skip_dir, &list[i], 0); |
847 | /* Sort dl alphabetically. | 847 | /* Sort dl alphabetically. |
848 | * GNU diff does this ignoring any number of trailing dots. | 848 | * GNU diff does this ignoring any number of trailing dots. |
849 | * We don't, so for us dotted files almost always are | 849 | * We don't, so for us dotted files almost always are |
diff --git a/editors/vi.c b/editors/vi.c index e09e0d9c7..b1776c668 100644 --- a/editors/vi.c +++ b/editors/vi.c | |||
@@ -14,7 +14,7 @@ | |||
14 | * add :help command | 14 | * add :help command |
15 | * :map macros | 15 | * :map macros |
16 | * if mark[] values were line numbers rather than pointers | 16 | * if mark[] values were line numbers rather than pointers |
17 | * it would be easier to change the mark when add/delete lines | 17 | * it would be easier to change the mark when add/delete lines |
18 | * More intelligence in refresh() | 18 | * More intelligence in refresh() |
19 | * ":r !cmd" and "!cmd" to filter text through an external command | 19 | * ":r !cmd" and "!cmd" to filter text through an external command |
20 | * A true "undo" facility | 20 | * A true "undo" facility |