diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-25 18:35:28 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-25 18:35:28 +0000 |
commit | 6a5377ac14bec2f2ae62c4ec085ff3b149cc11ad (patch) | |
tree | bb2200121abb55f06facbe8793c649ae90f53717 /editors | |
parent | ea7645bab62c6f68c755cf717662bceaa04858ed (diff) | |
download | busybox-w32-6a5377ac14bec2f2ae62c4ec085ff3b149cc11ad.tar.gz busybox-w32-6a5377ac14bec2f2ae62c4ec085ff3b149cc11ad.tar.bz2 busybox-w32-6a5377ac14bec2f2ae62c4ec085ff3b149cc11ad.zip |
documentation bits in comments, no code changes
Diffstat (limited to 'editors')
-rw-r--r-- | editors/ed.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/editors/ed.c b/editors/ed.c index f5b9c39bb..cd3836aed 100644 --- a/editors/ed.c +++ b/editors/ed.c | |||
@@ -82,7 +82,6 @@ static int bad_nums(int num1, int num2, const char *for_what) | |||
82 | 82 | ||
83 | static char *skip_blank(const char *cp) | 83 | static char *skip_blank(const char *cp) |
84 | { | 84 | { |
85 | // NB: fix comment in skip_whitespace! | ||
86 | while (isblank(*cp)) | 85 | while (isblank(*cp)) |
87 | cp++; | 86 | cp++; |
88 | return (char *)cp; | 87 | return (char *)cp; |
@@ -125,7 +124,6 @@ static void doCommands(void) | |||
125 | smallint have1, have2; | 124 | smallint have1, have2; |
126 | 125 | ||
127 | while (TRUE) { | 126 | while (TRUE) { |
128 | // NB: fix comment in lineedit.c! | ||
129 | /* Returns: | 127 | /* Returns: |
130 | * -1 on read errors or EOF, or on bare Ctrl-D. | 128 | * -1 on read errors or EOF, or on bare Ctrl-D. |
131 | * 0 on ctrl-C, | 129 | * 0 on ctrl-C, |