Diff for /freem/src/objects.c between versions 1.4 and 1.5

version 1.4, 2025/04/09 19:52:02 version 1.5, 2025/04/10 01:24:38
Line 24 Line 24
  *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.   *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.
  *   *
  *   $Log$   *   $Log$
    *   Revision 1.5  2025/04/10 01:24:38  snw
    *   Remove C++ style comments
    *
  *   Revision 1.4  2025/04/09 19:52:02  snw   *   Revision 1.4  2025/04/09 19:52:02  snw
  *   Eliminate as many warnings as possible while building with -Wall   *   Eliminate as many warnings as possible while building with -Wall
  *   *
Line 138  short obj_get_attribute(char *inst, char Line 141  short obj_get_attribute(char *inst, char
     if (merr () == UNDEF || merr () == M6) {      if (merr () == UNDEF || merr () == M6) {
                   
         if (strcmp (attrib, "CLASS") == 0) {          if (strcmp (attrib, "CLASS") == 0) {
             // non-object variables always belong to the ^%STRING class              /* non-object variables always belong to the ^%STRING class */
             snprintf (buf, 9, "^%%STRING");              snprintf (buf, 9, "^%%STRING");
   
             merr_clear ();              merr_clear ();

Removed from v.1.4  
changed lines
  Added in v.1.5


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>