Revision: 50708
          http://brlcad.svn.sourceforge.net/brlcad/?rev=50708&view=rev
Author:   brlcad
Date:     2012-05-26 19:03:36 +0000 (Sat, 26 May 2012)
Log Message:
-----------
remove the struct parse table support for '%S' since vls was just removed.

Modified Paths:
--------------
    brlcad/trunk/src/libbu/parse.c

Modified: brlcad/trunk/src/libbu/parse.c
===================================================================
--- brlcad/trunk/src/libbu/parse.c      2012-05-26 19:00:33 UTC (rev 50707)
+++ brlcad/trunk/src/libbu/parse.c      2012-05-26 19:03:36 UTC (rev 50708)
@@ -683,9 +683,6 @@
                    }
                }
                break;
-           case 'S': /* XXX - DEPRECATED [7.14] */
-               printf("DEVELOPER DEPRECATION NOTICE: Using %%S for string 
printing is deprecated, use %%V instead\n");
-               /* fall through */
            case 'V':
                {
                    struct bu_vls *vls = (struct bu_vls *)loc;
@@ -999,9 +996,6 @@
            else
                bu_vls_printf(vp, "%s", (char *)loc);
            break;
-       case 'S': /* XXX - DEPRECATED [7.14] */
-           printf("DEVELOPER DEPRECATION NOTICE: Using %%S for string printing 
is deprecated, use %%V instead\n");
-           /* fall through */
        case 'V':
            {
                struct bu_vls *vls = (struct bu_vls *)loc;
@@ -1131,9 +1125,6 @@
                    bu_log("\t%s=\"%s\"\n", sdp->sp_name,
                           (char *)loc);
                break;
-           case 'S': /* XXX - DEPRECATED [7.14] */
-               printf("DEVELOPER DEPRECATION NOTICE: Using %%S for string 
printing is deprecated, use %%V instead\n");
-               /* fall through */
            case 'V':
                {
                    struct bu_vls *vls = (struct bu_vls *)loc;
@@ -1338,9 +1329,6 @@
                    bu_vls_free(&tmpstr);
                }
                break;
-           case 'S': /* XXX - DEPRECATED [7.14] */
-               printf("DEVELOPER DEPRECATION NOTICE: Using %%S for string 
printing is deprecated, use %%V instead\n");
-               /* fall through */
            case 'V':
                {
                    struct bu_vls *vls_p = (struct bu_vls *)loc;
@@ -1462,9 +1450,6 @@
                    bu_vls_printf(vls_out, "\t%s=\"%s\"\n", sdp->sp_name,
                                  (char *)loc);
                break;
-           case 'S': /* XXX - DEPRECATED [7.14] */
-               printf("DEVELOPER DEPRECATION NOTICE: Using %%S for string 
printing is deprecated, use %%V instead\n");
-               /* fall through */
            case 'V':
                {
                    struct bu_vls *vls = (struct bu_vls *)loc;
@@ -2209,7 +2194,6 @@
        /* These types are specified by lengths, e.g. %80s */
        if (BU_STR_EQUAL(sp->sp_fmt, "%c") ||
            BU_STR_EQUAL(sp->sp_fmt, "%s") ||
-           BU_STR_EQUAL(sp->sp_fmt, "%S") || /* XXX - DEPRECATED [7.14] */
            BU_STR_EQUAL(sp->sp_fmt, "%V")) {
            if (sp->sp_count > 1) {
                /* Make them all look like %###s */
@@ -2301,9 +2285,6 @@
                        bu_vls_printf(logstr, "%s %c ", sdp->sp_name, *loc);
                    }
                    break;
-               case 'S': /* XXX - DEPRECATED [7.14] */
-                   printf("DEVELOPER DEPRECATION NOTICE: Using %%S for string 
printing is deprecated, use %%V instead\n");
-                   /* fall through */
                case 'V':
                    {
                        /* copy the string to a bu_vls (string of

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


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to