GLXWorkstation.st
changeset 1065 fdc5b9059d82
parent 969 61724c5ab6a5
child 1301 7b7763fedfba
--- a/GLXWorkstation.st	Tue Oct 01 19:41:57 1996 +0200
+++ b/GLXWorkstation.st	Wed Oct 02 13:39:30 1996 +0200
@@ -1187,7 +1187,7 @@
 
 errorStringOfLastError
 %{
-    RETURN ( __MKSTRING(lastErrorMsg COMMA_CON) );
+    RETURN ( __MKSTRING(lastErrorMsg) );
 %}
 !
 
@@ -4393,13 +4393,13 @@
 
 %{  /* NOCONTEXT */
 #ifdef VGL
-    RETURN (__MKSTRING("vogl" COMMA_CON));
+    RETURN (__MKSTRING("vogl"));
 #else
     char buffer[128];
 
     if (_INST(glOK) == true) {
 	gversion(buffer);
-	RETURN (__MKSTRING(buffer COMMA_CON));
+	RETURN (__MKSTRING(buffer));
     } else {
 	RETURN (nil);
     }
@@ -8784,5 +8784,5 @@
 !GLXWorkstation class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/GLXWorkstation.st,v 1.61 1996-07-20 10:13:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/GLXWorkstation.st,v 1.62 1996-10-02 11:37:56 cg Exp $'
 ! !