Gentoo Archives: gentoo-doc-cvs

From: "Joshua Saddler (nightmorph)" <nightmorph@g.o>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en/articles: l-sed1.xml
Date: Fri, 14 May 2010 22:00:28
Message-Id: 20100514220025.7582E2C4F8@corvid.gentoo.org
1 nightmorph 10/05/14 22:00:25
2
3 Modified: l-sed1.xml
4 Log:
5 fix end-of-line characters, bug 318335
6
7 Revision Changes Path
8 1.9 xml/htdocs/doc/en/articles/l-sed1.xml
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/articles/l-sed1.xml?rev=1.9&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/articles/l-sed1.xml?rev=1.9&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/articles/l-sed1.xml?r1=1.8&r2=1.9
13
14 Index: l-sed1.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/articles/l-sed1.xml,v
17 retrieving revision 1.8
18 retrieving revision 1.9
19 diff -u -r1.8 -r1.9
20 --- l-sed1.xml 11 Oct 2009 06:42:30 -0000 1.8
21 +++ l-sed1.xml 14 May 2010 22:00:25 -0000 1.9
22 @@ -1,5 +1,5 @@
23 <?xml version='1.0' encoding="UTF-8"?>
24 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/articles/l-sed1.xml,v 1.8 2009/10/11 06:42:30 nightmorph Exp $ -->
25 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/articles/l-sed1.xml,v 1.9 2010/05/14 22:00:25 nightmorph Exp $ -->
26 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
27
28 <guide link="/doc/en/articles/l-sed1.xml" disclaimer="articles">
29 @@ -21,8 +21,8 @@
30 version of the original article, and contains various improvements made by the
31 Gentoo Linux Documentation team -->
32
33 -<version>1.4</version>
34 -<date>2005-10-09</date>
35 +<version>1.5</version>
36 +<date>2010-05-14</date>
37
38 <chapter>
39 <title>Get to know the powerful UNIX editor</title>
40 @@ -327,11 +327,11 @@
41 <ti>Will match all blank lines</ti>
42 </tr>
43 <tr>
44 - <ti>/}^/</ti>
45 + <ti>/}$/</ti>
46 <ti>Will match any lines that ends with '}' (no spaces)</ti>
47 </tr>
48 <tr>
49 - <ti>/} *^/</ti>
50 + <ti>/} *$/</ti>
51 <ti>Will match any line ending with '}' followed by zero or more spaces</ti>
52 </tr>
53 <tr>