AutoIt: Allow hyphen in directive (#3308) · PrismJS/prism@bcb2e2c

Original file line numberDiff line numberDiff line change

@@ -1,13 +1,17 @@

11

#NoTrayIcon

22

#OnAutoItStartRegister "Example"

3+

#include-once

4+

#include <MsgBoxConstants.au3>

35
46

----------------------------------------------------

57
68

[

79

["directive", "#NoTrayIcon"],

8-

["directive", "#OnAutoItStartRegister"], ["string", ["\"Example\""]]

10+

["directive", "#OnAutoItStartRegister"], ["string", ["\"Example\""]],

11+

["directive", "#include-once"],

12+

["directive", "#include"], ["url", "<MsgBoxConstants.au3>"]

913

]

1014
1115

----------------------------------------------------

1216
13-

Checks for directives.

17+

Checks for directives.