Revision: 52894
          http://brlcad.svn.sourceforge.net/brlcad/?rev=52894&view=rev
Author:   carlmoore
Date:     2012-10-09 16:49:42 +0000 (Tue, 09 Oct 2012)
Log Message:
-----------
add 'ed' to 'Unexpect', and remove a duplicate 'the'

Modified Paths:
--------------
    brlcad/trunk/src/libged/joint.c

Modified: brlcad/trunk/src/libged/joint.c
===================================================================
--- brlcad/trunk/src/libged/joint.c     2012-10-09 16:43:30 UTC (rev 52893)
+++ brlcad/trunk/src/libged/joint.c     2012-10-09 16:49:42 UTC (rev 52894)
@@ -679,7 +679,7 @@
 
     while (count) {
        if (get_token(gedp, &tok, fip, str, animkeys, animsyms) == EOF) {
-           parse_error(gedp, str, "skip_group: Unexpect EOF while searching 
for group end.");
+           parse_error(gedp, str, "skip_group: Unexpected EOF while searching 
for group end.");
            return;
        }
        if (tok.type == BU_LEX_IDENT) bu_free(tok.t_id.value, "unit token");
@@ -702,7 +702,7 @@
     union bu_lex_token token;
 
     if (get_token(gedp, &token, fip, str, units, animsyms) == EOF) {
-       parse_error(gedp, str, "parse_units: Unexpect EOF reading units.");
+       parse_error(gedp, str, "parse_units: Unexpected EOF reading units.");
        return 0;
     }
     if (token.type == BU_LEX_IDENT) bu_free(token.t_id.value, "unit token");
@@ -751,7 +751,7 @@
     ap->type = ARC_PATH;
     for (;;) {
        if (get_token(gedp, &token, fip, str, (struct bu_lex_key *)NULL, 
animsyms) == EOF) {
-           parse_error(gedp, str, "parse_path: Unexpect EOF.");
+           parse_error(gedp, str, "parse_path: Unexpected EOF.");
            free_arc(ap);
            return 0;
        }
@@ -767,7 +767,7 @@
        }
        ap->arc[ap->arc_last] = token.t_id.value;
        if (get_token(gedp, &token, fip, str, (struct bu_lex_key *)NULL, 
animsyms) == EOF) {
-           parse_error(gedp, str, "parse_path: Unexpect EOF while getting '/' 
or '-'");
+           parse_error(gedp, str, "parse_path: Unexpected EOF while getting 
'/' or '-'");
            free_arc(ap);
            return 0;
        }
@@ -829,7 +829,7 @@
     ap->type = ARC_LIST;
     for (;;) {
        if (get_token(gedp, &token, fip, str, (struct bu_lex_key *)NULL, 
animsyms) == EOF) {
-           parse_error(gedp, str, "parse_path: Unexpect EOF.");
+           parse_error(gedp, str, "parse_path: Unexpected EOF.");
            free_arc(ap);
            return 0;
        }
@@ -845,7 +845,7 @@
        }
        ap->arc[ap->arc_last] = token.t_id.value;
        if (get_token(gedp, &token, fip, str, (struct bu_lex_key *)NULL, 
animsyms) == EOF) {
-           parse_error(gedp, str, "parse_path: Unexpect EOF while getting ',' 
or ';'");
+           parse_error(gedp, str, "parse_path: Unexpected EOF while getting 
',' or ';'");
            free_arc(ap);
            return 0;
        }
@@ -944,13 +944,13 @@
     }
 
     if (get_token(gedp, &token, fip, str, animkeys, animsyms) == EOF) {
-       parse_error(gedp, str, "parse_double: Unexpect EOF while getting 
number.");
+       parse_error(gedp, str, "parse_double: Unexpected EOF while getting 
number.");
        return 0;
     }
     if (token.type == BU_LEX_SYMBOL && token.t_key.value == SYM_MINUS) {
        sign = -1;
        if (get_token(gedp, &token, fip, str, animkeys, animsyms) == EOF) {
-           parse_error(gedp, str, "parse_double: Unexpect EOF while getting 
number.");
+           parse_error(gedp, str, "parse_double: Unexpected EOF while getting 
number.");
            return 0;
        }
     }
@@ -1521,7 +1521,7 @@
     jointfound = listfound = arcfound = pathfound = 0;
     for (;;) {
        if (get_token(gedp, &token, fip, str, animkeys, animsyms) == EOF) {
-           parse_error(gedp, str, "parse_jset: Unexpect EOF getting contents 
of joint set");
+           parse_error(gedp, str, "parse_jset: Unexpected EOF getting contents 
of joint set");
            return 0;
        }
        if (token.type == BU_LEX_IDENT) bu_free(token.t_id.value, "unit token");
@@ -1547,7 +1547,7 @@
                    return 0;
                }
                if (get_token(gedp, &token, fip, str, animkeys, animsyms) == 
EOF) {
-                   parse_error(gedp, str, "parse_jset: Unexpect EOF getting 
'='");
+                   parse_error(gedp, str, "parse_jset: Unexpected EOF getting 
'='");
                    return 0;
                }
                if (token.type != BU_LEX_IDENT) {
@@ -1615,7 +1615,7 @@
 
     for (;;) {
        if (get_token(gedp, &token, fip, str, animkeys, animsyms) == EOF) {
-           parse_error(gedp, str, "parse_solid: Unexpect EOF.");
+           parse_error(gedp, str, "parse_solid: Unexpected EOF.");
            return 0;
        }
        if (token.type == BU_LEX_IDENT) bu_free(token.t_id.value, "unit token");
@@ -1674,7 +1674,7 @@
     bu_vls_trunc(gedp->ged_result_str, 0);
 
     if (get_token(gedp, &token, fip, str, lex_solids, animsyms) == EOF) {
-       parse_error(gedp, str, "parse_point: Unexpect EOF getting solid type.");
+       parse_error(gedp, str, "parse_point: Unexpected EOF getting solid 
type.");
        return 0;
     }
     if (token.type == BU_LEX_IDENT) bu_free(token.t_id.value, "unit token");
@@ -3580,7 +3580,7 @@
                     (genptr_t)NULL);
 
     /*
-     * Now we draw the the overlays.  We do this by building a
+     * Now we draw the overlays.  We do this by building a
      * mesh from each grip to every other grip in that list.
      */
     vbp = rt_vlblock_init();

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to