diff options
| author | Stefan Kangas | 2024-07-07 03:50:35 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2024-07-07 03:50:35 +0200 |
| commit | 745eae00d4178906eda58c26d0d132fbd32b3ff7 (patch) | |
| tree | 4db77f81aa1a01eef78efff6c8ccb7ba9e26e169 | |
| parent | 2e9777512a0cd2fb2e60706d6908247496faeeec (diff) | |
| download | emacs-745eae00d4178906eda58c26d0d132fbd32b3ff7.tar.gz emacs-745eae00d4178906eda58c26d0d132fbd32b3ff7.zip | |
Fontify `mkbool` as function in `awk-mode`
* lisp/progmodes/cc-awk.el (awk-font-lock-keywords):
Fontify 'mkbool' function, added in gawk version 5.2.
See Info node '(gawk) Boolean Functions'.
| -rw-r--r-- | lisp/progmodes/cc-awk.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/cc-awk.el b/lisp/progmodes/cc-awk.el index e299f4fa8d2..c520c3def71 100644 --- a/lisp/progmodes/cc-awk.el +++ b/lisp/progmodes/cc-awk.el | |||
| @@ -1035,8 +1035,8 @@ std\\(err\\|in\\|out\\)\\|user\\)\\)\\>\ | |||
| 1035 | '("adump" "and" "asort" "asorti" "atan2" "bindtextdomain" "close" | 1035 | '("adump" "and" "asort" "asorti" "atan2" "bindtextdomain" "close" |
| 1036 | "compl" "cos" "dcgettext" "dcngettext" "exp" "extension" "fflush" | 1036 | "compl" "cos" "dcgettext" "dcngettext" "exp" "extension" "fflush" |
| 1037 | "gensub" "gsub" "index" "int" "isarray" "length" "log" "lshift" | 1037 | "gensub" "gsub" "index" "int" "isarray" "length" "log" "lshift" |
| 1038 | "match" "mktime" "or" "patsplit" "print" "printf" "rand" "rshift" | 1038 | "match" "mkbool" "mktime" "or" "patsplit" "print" "printf" "rand" |
| 1039 | "sin" "split" "sprintf" "sqrt" "srand" "stopme" | 1039 | "rshift" "sin" "split" "sprintf" "sqrt" "srand" "stopme" |
| 1040 | "strftime" "strtonum" "sub" "substr" "system" | 1040 | "strftime" "strtonum" "sub" "substr" "system" |
| 1041 | "systime" "tolower" "toupper" "typeof" "xor") | 1041 | "systime" "tolower" "toupper" "typeof" "xor") |
| 1042 | t) | 1042 | t) |