diff options
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/src/commands/expand_macro.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands/expand_macro.ts b/editors/code/src/commands/expand_macro.ts index 1fa2cf739..34e0c8fb3 100644 --- a/editors/code/src/commands/expand_macro.ts +++ b/editors/code/src/commands/expand_macro.ts | |||
@@ -75,7 +75,7 @@ interface ExpandedMacro { | |||
75 | 75 | ||
76 | function code_format(expanded: ExpandedMacro): string { | 76 | function code_format(expanded: ExpandedMacro): string { |
77 | let result = `// Recursive expansion of ${expanded.name}! macro\n`; | 77 | let result = `// Recursive expansion of ${expanded.name}! macro\n`; |
78 | result += '='.repeat(result.length); | 78 | result += '// ' + '='.repeat(result.length - 3); |
79 | result += '\n\n'; | 79 | result += '\n\n'; |
80 | result += expanded.expansion; | 80 | result += expanded.expansion; |
81 | 81 | ||