看板 DFBSD_commit 關於我們 聯絡資訊
commit d2af8296ab6d4e1e5051eccb7f51815bbda7a71f Author: Sascha Wildner <saw@online.de> Date: Sat Jun 13 13:39:15 2009 +0200 sed(1): Sync with FreeBSD. * Add workaround for a back reference when no corresponding parenthesized subexpression is defined. For example, the following command line caused unexpected behavior like segmentation fault: % echo test | sed -e 's/test/\1/' * Fix the code to conform to the "or more" part of the following POSIX specification. "A function can be preceded by one or more '!' characters, in which case the function shall be applied if the addresses do not select the pattern space." * Implement "addr1,+N" ranges - not dissimilar to grep's -A switch. Summary of changes: usr.bin/sed/compile.c | 23 +++++++++++++++++++---- usr.bin/sed/defs.h | 7 ++++--- usr.bin/sed/misc.c | 2 +- usr.bin/sed/process.c | 37 ++++++++++++++++++++++--------------- usr.bin/sed/sed.1 | 31 +++++++++++++++++-------------- 5 files changed, 63 insertions(+), 37 deletions(-) http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/d2af8296ab6d4e1e5051eccb7f51815bbda7a71f -- DragonFly BSD source repository