Fixed macro def expansion
This commit is contained in:
@@ -236,23 +236,9 @@ object Form1: TForm1
|
||||
DataDetectorTypes = []
|
||||
Lines.Strings = (
|
||||
'(do'
|
||||
'(defmacro repeat [n body]'
|
||||
' `(do'
|
||||
' (def loop (fn [counter]'
|
||||
' (if (> counter 0)'
|
||||
' (do'
|
||||
' ~body'
|
||||
' (recur (- counter 1))'
|
||||
' )'
|
||||
' (do'
|
||||
' )'
|
||||
' )'
|
||||
' ))'
|
||||
' (loop ~n)'
|
||||
' )'
|
||||
')'
|
||||
''
|
||||
'(repeat 5 "hi")'
|
||||
'(defmacro test [body] `(fn [] ~body ))'
|
||||
'(defmacro test2 [body] `(fn [] ~body ))'
|
||||
'(test2 "hi")'
|
||||
')')
|
||||
StyledSettings = [Size, Style, FontColor]
|
||||
TextSettings.Font.Family = 'Consolas'
|
||||
|
||||
Reference in New Issue
Block a user