diff --git a/spin2/CHANGELOG.md b/spin2/CHANGELOG.md
index 14365e4..7c2cafe 100644
--- a/spin2/CHANGELOG.md
+++ b/spin2/CHANGELOG.md
@@ -18,11 +18,11 @@ Possible next additions:
- Add new-file templates as Snippets
- Add additional Snippets as the community identifies them
-## [2.2.10] 2023-12-23
+## [2.2.10] 2023-12-24
Update P1 and P2
-- Complete the implementation of the spin/spin2 colde folding
+- Complete the implementation of the spin/spin2 code folding
## [2.2.9] 2023-12-11
diff --git a/spin2/package.json b/spin2/package.json
index 77b2668..b1f7726 100644
--- a/spin2/package.json
+++ b/spin2/package.json
@@ -5,7 +5,7 @@
"icon": "images/Propeller.ico",
"author": "IronSheep",
"license": "MIT",
- "version": "2.2.9",
+ "version": "2.2.10",
"repository": {
"type": "git",
"url": "https://github.com/ironsheep/P2-vscode-langserv-extension"
diff --git a/spin2/scripts/LIVE-package.json b/spin2/scripts/LIVE-package.json
index 77b2668..b1f7726 100644
--- a/spin2/scripts/LIVE-package.json
+++ b/spin2/scripts/LIVE-package.json
@@ -5,7 +5,7 @@
"icon": "images/Propeller.ico",
"author": "IronSheep",
"license": "MIT",
- "version": "2.2.9",
+ "version": "2.2.10",
"repository": {
"type": "git",
"url": "https://github.com/ironsheep/P2-vscode-langserv-extension"
diff --git a/spin2/scripts/TEST-package.json b/spin2/scripts/TEST-package.json
index 828f6e3..2912fd5 100644
--- a/spin2/scripts/TEST-package.json
+++ b/spin2/scripts/TEST-package.json
@@ -4,7 +4,7 @@
"description": "P1 and P2 Spin/Pasm Syntax/Semantic Highlighting w/Code Outline, Object Outline and Custom tabbing support",
"author": "IronSheep",
"license": "MIT",
- "version": "2.2.9",
+ "version": "2.2.10",
"repository": {
"type": "git",
"url": "https://github.com/ironsheep/P2-vscode-langserv-extension"
diff --git a/spin2/server/src/parser/spin2.documentSemanticParser.ts b/spin2/server/src/parser/spin2.documentSemanticParser.ts
index efdb0af..0c30dcf 100644
--- a/spin2/server/src/parser/spin2.documentSemanticParser.ts
+++ b/spin2/server/src/parser/spin2.documentSemanticParser.ts
@@ -43,7 +43,7 @@ export class Spin2DocumentSemanticParser {
private bLogStarted: boolean = false;
// adjust following true/false to show specific parsing debug
- private spin2DebugLogEnabled: boolean = true; // WARNING (REMOVE BEFORE FLIGHT)- change to 'false' - disable before commit
+ private spin2DebugLogEnabled: boolean = false; // WARNING (REMOVE BEFORE FLIGHT)- change to 'false' - disable before commit
private showSpinCode: boolean = true;
private showPreProc: boolean = true;
private showCON: boolean = true;
diff --git a/spin2/server/src/parser/spin2.utils.ts b/spin2/server/src/parser/spin2.utils.ts
index 0237504..7eace8c 100644
--- a/spin2/server/src/parser/spin2.utils.ts
+++ b/spin2/server/src/parser/spin2.utils.ts
@@ -1997,9 +1997,9 @@ export class Spin2ParseUtils {
"Compose a zero-terminated string (quoted characters and values 1..255 allowed), return address of string
@param `listOfElements` - a comma separated list of elements to be built into a string (quoted characters and values 1..255 allowed)
@returns `StringAddress` - address of where string was placed in ram",
],
//lstring: ['LSTRING("Hello",0,"Terve",0) : StringAddress', "Compose a length-headed string (quoted characters and values 0..255), return address of string."],
- byte: ["BYTE($80,$09,$77,WORD $1234,LONG -1) : BytesAddress", "Compose a string of bytes, return address of string. WORD/LONG size overrides allowed."],
- word: ["WORD(1_000,10_000,50_000,LONG $12345678) : WordsAddress", "Compose a string of words, return address of string. BYTE/LONG size overrides allowed."],
- long: ["LONG(1e-6,1e-3,1.0,1e3,1e6,-50,BYTE $FF) : LongsAddress", "Compose a string of longs, return address of string. BYTE/WORD size overrides allowed."],
+ //byte: ["BYTE($80,$09,$77,WORD $1234,LONG -1) : BytesAddress", "Compose a string of bytes, return address of string. WORD/LONG size overrides allowed."],
+ //word: ["WORD(1_000,10_000,50_000,LONG $12345678) : WordsAddress", "Compose a string of words, return address of string. BYTE/LONG size overrides allowed."],
+ //long: ["LONG(1e-6,1e-3,1.0,1e3,1e6,-50,BYTE $FF) : LongsAddress", "Compose a string of longs, return address of string. BYTE/WORD size overrides allowed."],
};
private _tableSpinIndexValueMethods: { [Identifier: string]: string[] } = {