fez-lisp 1.5.58 → 1.5.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "fez-lisp",
3
3
  "description": "Lisp interpreted & compiled to JavaScript",
4
4
  "author": "AT290690",
5
- "version": "1.5.58",
5
+ "version": "1.5.59",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "keywords": [
package/src/check.js CHANGED
@@ -117,7 +117,7 @@ const getScopeNames = (scope) => {
117
117
  }
118
118
  const withScope = (name, scope) => {
119
119
  const chain = getScopeNames(scope)
120
- return `${chain
120
+ return `${chain.length === 1 ? '· ' : ''}${chain
121
121
  .map((x) => (Number.isInteger(+x) ? '~' : x))
122
122
  .join(' ')} ${name}`
123
123
  }