Add macros missing from font lock in Emacs 24

* dash.el (dash--keywords): Add missing macro names to font lock
keywords in Emacs 24.
master
Basil L. Contovounesios 3 years ago
parent 72e042dd40
commit bdf4a5d868
No known key found for this signature in database
GPG Key ID: 205AB54A5D5D8CFF
  1. 19
      dash.el

@ -3857,18 +3857,26 @@ This function satisfies the following laws:
(let ((macs '("!cdr" (let ((macs '("!cdr"
"!cons" "!cons"
"-->" "-->"
"--all-p"
"--all?" "--all?"
"--annotate" "--annotate"
"--any"
"--any-p"
"--any?" "--any?"
"--count" "--count"
"--dotimes" "--dotimes"
"--doto" "--doto"
"--drop-while" "--drop-while"
"--each" "--each"
"--each-indexed"
"--each-r" "--each-r"
"--each-r-while" "--each-r-while"
"--each-while" "--each-while"
"--every"
"--every-p"
"--every?"
"--filter" "--filter"
"--find"
"--find-index" "--find-index"
"--find-indices" "--find-indices"
"--find-last-index" "--find-last-index"
@ -3887,8 +3895,11 @@ This function satisfies the following laws:
"--mapcat" "--mapcat"
"--max-by" "--max-by"
"--min-by" "--min-by"
"--none-p"
"--none?" "--none?"
"--only-some-p"
"--only-some?" "--only-some?"
"--partition-after-pred"
"--partition-by" "--partition-by"
"--partition-by-header" "--partition-by-header"
"--reduce" "--reduce"
@ -3899,11 +3910,18 @@ This function satisfies the following laws:
"--reductions-from" "--reductions-from"
"--reductions-r" "--reductions-r"
"--reductions-r-from" "--reductions-r-from"
"--reject"
"--reject-first"
"--reject-last"
"--remove" "--remove"
"--remove-first" "--remove-first"
"--remove-last" "--remove-last"
"--replace-where"
"--select"
"--separate" "--separate"
"--some" "--some"
"--some-p"
"--some?"
"--sort" "--sort"
"--splice" "--splice"
"--splice-list" "--splice-list"
@ -3924,6 +3942,7 @@ This function satisfies the following laws:
"->" "->"
"->>" "->>"
"-as->" "-as->"
"-cut"
"-doto" "-doto"
"-if-let" "-if-let"
"-if-let*" "-if-let*"

Loading…
Cancel
Save