This is the mail archive of the frysk-cvs@sources.redhat.com mailing list for the frysk project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[SCM] master: Fix typo; matches[i].toString(); not matches.toString().


The branch, master has been updated
       via  32ee0c47a82aabc7959c2806dd18364dc1d25e95 (commit)
       via  4a091e682a087058345852bfbe0aec5760efb189 (commit)
      from  aaef9996c9d45d73d88b04ddd1334b53970d7e7a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit 32ee0c47a82aabc7959c2806dd18364dc1d25e95
Author: Andrew Cagney <cagney@redhat.com>
Date:   Mon Dec 17 13:29:20 2007 -0500

    Fix typo; matches[i].toString(); not matches.toString().
    
    2007-12-17  cagney  <cagney@redhat.com>
    
    	* MatchException.java (getMessage()): Fix typo; print match element.

commit 4a091e682a087058345852bfbe0aec5760efb189
Author: Andrew Cagney <cagney@redhat.com>
Date:   Mon Dec 17 13:24:59 2007 -0500

    Note the need to configure the changelog plug-in.

-----------------------------------------------------------------------

Summary of changes:
 frysk-sys/frysk/expunit/ChangeLog           |    2 ++
 frysk-sys/frysk/expunit/MatchException.java |    2 +-
 htdocs/build/index.html                     |    6 +++---
 3 files changed, 6 insertions(+), 4 deletions(-)

First 500 lines of diff:
diff --git a/frysk-sys/frysk/expunit/ChangeLog b/frysk-sys/frysk/expunit/ChangeLog
index 25f737d..6041ae4 100644
--- a/frysk-sys/frysk/expunit/ChangeLog
+++ b/frysk-sys/frysk/expunit/ChangeLog
@@ -1,5 +1,7 @@
 2007-12-17  cagney  <cagney@redhat.com>
 
+	* MatchException.java (getMessage()): Fix typo; print match element.
+
 	* MatchException.java: New.
 	* EndOfFileException.java: Extend MatchException.
 	(message()): Delete.
diff --git a/frysk-sys/frysk/expunit/MatchException.java b/frysk-sys/frysk/expunit/MatchException.java
index e59bedf..51fee8b 100644
--- a/frysk-sys/frysk/expunit/MatchException.java
+++ b/frysk-sys/frysk/expunit/MatchException.java
@@ -18,7 +18,7 @@ class MatchException extends RuntimeException {
 	    msg.append("; expecting: ");
 	    for (int i = 0; i < matches.length; i++) {
 		msg.append(" <<");
-		msg.append(matches.toString());
+		msg.append(matches[i].toString());
 		msg.append(">>");
 	    }
 	}
diff --git a/htdocs/build/index.html b/htdocs/build/index.html
index e12cf7b..e0041f8 100644
--- a/htdocs/build/index.html
+++ b/htdocs/build/index.html
@@ -355,7 +355,6 @@ suppression will take place.</dd>
 <dl>
 
 <dt>How do I "import" <em>frysk</em> into eclipse?</dt>
-
 <dd>
 First you will need to check out and build <em>frysk</em> from the
 command line; this will create the
@@ -400,12 +399,13 @@ sudo yum install eclipse eclipse-changelog \
     eclipse-cdt eclipse-jdt \
     java-1.4.2-gcj-compat-src 
 </pre>
-</ul>
+and don't forget to configure the <tt>Eclipse ChangeLog Plug-in</tt>;
+see: Window -> preferences; ChangeLog; and set your e-mail address.
 </dd>
 
 <dt>How do I build <em>frysk</em> from eclipse?</dt>
 <dd>
-So far everyone has stuck with the command line.
+Use <tt>CNTRL-B</tt>.
 </dd>
 
 </dl>


hooks/post-receive
--
frysk system monitor/debugger


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]