#5317
Yutaka Emura
Keymaster

fgdfg3434 wrote:
!!!!!! Sorry for my english, I am not native english speaker

I have 2 macroses. The first macros include call of second macros through new ‘#include’ directive.

After execution of first macros I have an error:
“Invalid sign/char
File ….1.jsee
Line 3″

1.jsee
———————————–
#language = “JavaScript”
Window.document.write( ‘Hello 111 ! ‘);
#include “2.jsee”
———————————–

2.jsee
———————————–
#language = “JavaScript”
Window.document.write( ‘Hello 222 ! ‘);
———————————–

#include and all directives beginning with # must be before any real code. This is because EmEditor cannot distinguish directives inside once the code begins, and so all the directives must be at top of the file.