[BACK]Return to sed.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / sed

Diff for /src/usr.bin/sed/sed.1 between version 1.52 and 1.53

version 1.52, 2017/12/08 18:41:59 version 1.53, 2017/12/11 13:25:57
Line 482 
Line 482 
 .Ar string2 .  .Ar string2 .
 Any character other than a backslash or newline can be used instead of  Any character other than a backslash or newline can be used instead of
 a slash to delimit the strings.  a slash to delimit the strings.
   .Pp
 Within  Within
 .Ar string1  .Ar string1
 and  and
 .Ar string2 ,  .Ar string2 ,
 a backslash followed by any character other than a newline is that literal  a backslash followed by another backslash
 character, and a backslash followed by an  is replaced by a single backslash,
   a backslash followed by an
 .Sq n  .Sq n
 is replaced by a newline character.  is replaced by a newline character,
   and a backslash followed by the delimiting character
   is replaced by that character,
   causing it to be treated literally,
   with the exception of the
   .Sq n
   character,
   which will still be treated like a newline character.
   It is an error for a backslash to not be followed by another backslash,
   .Sq n ,
   or the delimiting character,
   or for
   .Ar string1
   to contain repeating characters.
 .It [0addr] Ns Ic \&: Ns Ar label  .It [0addr] Ns Ic \&: Ns Ar label
 This function does nothing; it bears a  This function does nothing; it bears a
 .Ar label  .Ar label

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.53