diff --git a/exec/load/frame.js b/exec/load/frame.js
index 37ec1f6703cc05b0c1c5a6bc729dd9509777da50..057000ccb8d198b2f16ad03eca46ffbcc7546e19 100644
--- a/exec/load/frame.js
+++ b/exec/load/frame.js
@@ -1074,8 +1074,9 @@ Frame.prototype.putmsg = function(str,attr) {
 			case 'I':	/* Blink */
 				this.__properties__.curr_attr|=BLINK;
 				break;
-			case 'N':	/* Normal (ToDo: Does this do ESC[0?) */
-				this.__properties__.curr_attr=this.attr;
+			case 'N': 	/* Normal */
+				this.__properties__.curr_attr&=~HIGH;
+				this.__properties__.curr_attr&=~BLINK;
 				break;
 			case '-':	/* Normal if High, Blink, or BG */
 				if(this.__properties__.curr_attr & 0xf8)