lisp/nsis-mode.el
changeset 287 e16e11bd28b2
parent 286 bdbe49f5dea5
child 310 dca63c827ac1
equal deleted inserted replaced
286:bdbe49f5dea5 287:e16e11bd28b2
    55     "SetCompress"
    55     "SetCompress"
    56     )
    56     )
    57   '(
    57   '(
    58     ("!\\(insertmacro\\|define\\|ifdef\\|ifndef\\|else\\|endif\\|echo\\|verbose\\|include\\|macroend\\|macro\\|undef\\|packhdr\\|warning\\|error\\)" (1 'font-lock-builtin-face))
    58     ("!\\(insertmacro\\|define\\|ifdef\\|ifndef\\|else\\|endif\\|echo\\|verbose\\|include\\|macroend\\|macro\\|undef\\|packhdr\\|warning\\|error\\)" (1 'font-lock-builtin-face))
    59     ("$[({]?\\([A-Za-z0-9_]+\\)[)}]?" (1 'font-lock-variable-name-face))
    59     ("$[({]?\\([A-Za-z0-9_]+\\)[)}]?" (1 'font-lock-variable-name-face))
    60     ("[[:blank:]]*\\([[:alpha:]][[:alnum:]_.]*:\\)" (1 'font-lock-function-name-face))
    60     ("^[[:blank:]]*\\([[:alpha:]][[:alnum:]_.]*:\\)\\([^:]\\|$\\)" (1 'font-lock-function-name-face))
    61     )
    61     )
    62   (list "\\.\\(nsi\\|nsh\\)$")
    62   (list "\\.\\(nsi\\|nsh\\)$")
    63   nil
    63   nil
    64   "Generic mode for nsis files.")
    64   "Generic mode for nsis files.")
    65 
    65