diff options
-rw-r--r-- | editors/sed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/sed.c b/editors/sed.c index 7fe2809b3..a5ef400fc 100644 --- a/editors/sed.c +++ b/editors/sed.c | |||
@@ -917,7 +917,7 @@ static void process_files(void) | |||
917 | /* Or did we match the start of a numerical range? */ | 917 | /* Or did we match the start of a numerical range? */ |
918 | || (sed_cmd->beg_line > 0 | 918 | || (sed_cmd->beg_line > 0 |
919 | && (sed_cmd->end_line || sed_cmd->end_match | 919 | && (sed_cmd->end_line || sed_cmd->end_match |
920 | /* note: even if end numeric and is < linenum too, | 920 | /* note: even if end is numeric and is < linenum too, |
921 | * GNU sed matches! We match too */ | 921 | * GNU sed matches! We match too */ |
922 | ? (sed_cmd->beg_line <= linenum) /* N,end */ | 922 | ? (sed_cmd->beg_line <= linenum) /* N,end */ |
923 | : (sed_cmd->beg_line == linenum) /* N */ | 923 | : (sed_cmd->beg_line == linenum) /* N */ |