aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
Diffstat (limited to 'editors')
-rw-r--r--editors/awk.c3
-rw-r--r--editors/cmp.c1
-rw-r--r--editors/diff.c1
-rw-r--r--editors/sed.c3
-rw-r--r--editors/vi.c1
5 files changed, 2 insertions, 7 deletions
diff --git a/editors/awk.c b/editors/awk.c
index 9d38b1f88..7685546e5 100644
--- a/editors/awk.c
+++ b/editors/awk.c
@@ -10,8 +10,7 @@
10//usage:#define awk_trivial_usage 10//usage:#define awk_trivial_usage
11//usage: "[OPTIONS] [AWK_PROGRAM] [FILE]..." 11//usage: "[OPTIONS] [AWK_PROGRAM] [FILE]..."
12//usage:#define awk_full_usage "\n\n" 12//usage:#define awk_full_usage "\n\n"
13//usage: "Options:" 13//usage: " -v VAR=VAL Set variable"
14//usage: "\n -v VAR=VAL Set variable"
15//usage: "\n -F SEP Use SEP as field separator" 14//usage: "\n -F SEP Use SEP as field separator"
16//usage: "\n -f FILE Read program from FILE" 15//usage: "\n -f FILE Read program from FILE"
17 16
diff --git a/editors/cmp.c b/editors/cmp.c
index 3a0f5aa4f..fbe6b9753 100644
--- a/editors/cmp.c
+++ b/editors/cmp.c
@@ -14,7 +14,6 @@
14//usage: "[-l] [-s] FILE1 [FILE2" IF_DESKTOP(" [SKIP1 [SKIP2]]") "]" 14//usage: "[-l] [-s] FILE1 [FILE2" IF_DESKTOP(" [SKIP1 [SKIP2]]") "]"
15//usage:#define cmp_full_usage "\n\n" 15//usage:#define cmp_full_usage "\n\n"
16//usage: "Compare FILE1 with FILE2 (or stdin)\n" 16//usage: "Compare FILE1 with FILE2 (or stdin)\n"
17//usage: "\nOptions:"
18//usage: "\n -l Write the byte numbers (decimal) and values (octal)" 17//usage: "\n -l Write the byte numbers (decimal) and values (octal)"
19//usage: "\n for all differing bytes" 18//usage: "\n for all differing bytes"
20//usage: "\n -s Quiet" 19//usage: "\n -s Quiet"
diff --git a/editors/diff.c b/editors/diff.c
index 8b1e92783..8c0a31f47 100644
--- a/editors/diff.c
+++ b/editors/diff.c
@@ -81,7 +81,6 @@
81//usage:#define diff_full_usage "\n\n" 81//usage:#define diff_full_usage "\n\n"
82//usage: "Compare files line by line and output the differences between them.\n" 82//usage: "Compare files line by line and output the differences between them.\n"
83//usage: "This implementation supports unified diffs only.\n" 83//usage: "This implementation supports unified diffs only.\n"
84//usage: "\nOptions:"
85//usage: "\n -a Treat all files as text" 84//usage: "\n -a Treat all files as text"
86//usage: "\n -b Ignore changes in the amount of whitespace" 85//usage: "\n -b Ignore changes in the amount of whitespace"
87//usage: "\n -B Ignore changes whose lines are all blank" 86//usage: "\n -B Ignore changes whose lines are all blank"
diff --git a/editors/sed.c b/editors/sed.c
index 99e56ff52..5c4e9cc3b 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -59,8 +59,7 @@
59//usage:#define sed_trivial_usage 59//usage:#define sed_trivial_usage
60//usage: "[-efinr] SED_CMD [FILE]..." 60//usage: "[-efinr] SED_CMD [FILE]..."
61//usage:#define sed_full_usage "\n\n" 61//usage:#define sed_full_usage "\n\n"
62//usage: "Options:" 62//usage: " -e CMD Add CMD to sed commands to be executed"
63//usage: "\n -e CMD Add CMD to sed commands to be executed"
64//usage: "\n -f FILE Add FILE contents to sed commands to be executed" 63//usage: "\n -f FILE Add FILE contents to sed commands to be executed"
65//usage: "\n -i Edit files in-place (else sends result to stdout)" 64//usage: "\n -i Edit files in-place (else sends result to stdout)"
66//usage: "\n -n Suppress automatic printing of pattern space" 65//usage: "\n -n Suppress automatic printing of pattern space"
diff --git a/editors/vi.c b/editors/vi.c
index e1f3724cc..3656fee95 100644
--- a/editors/vi.c
+++ b/editors/vi.c
@@ -25,7 +25,6 @@
25//usage: "[OPTIONS] [FILE]..." 25//usage: "[OPTIONS] [FILE]..."
26//usage:#define vi_full_usage "\n\n" 26//usage:#define vi_full_usage "\n\n"
27//usage: "Edit FILE\n" 27//usage: "Edit FILE\n"
28//usage: "\nOptions:"
29//usage: IF_FEATURE_VI_COLON( 28//usage: IF_FEATURE_VI_COLON(
30//usage: "\n -c Initial command to run ($EXINIT also available)" 29//usage: "\n -c Initial command to run ($EXINIT also available)"
31//usage: ) 30//usage: )