branch: externals/dash
commit 00549e49c20e72f1bf068f0920029ad7fa2560e1
Author: Matus Goljer <[email protected]>
Commit: Matus Goljer <[email protected]>
Add missing fontification keywords
---
README.md | 2 +-
dash.el | 5 +++++
2 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/README.md b/README.md
index 5912c87..34443e2 100644
--- a/README.md
+++ b/README.md
@@ -1112,7 +1112,7 @@ second elements of each list, and so on. The lengths of
the returned
groupings are equal to the length of the shortest input list.
If two lists are provided as arguments, return the groupings as a list
-of cons cells. Otherwise, return the groupings as a list of lists.
+of cons cells. Otherwise, return the groupings as a list of lists.
```cl
(-zip '(1 2 3) '(4 5 6)) ;; => '((1 . 4) (2 . 5) (3 . 6))
diff --git a/dash.el b/dash.el
index ff464e0..4e214d0 100644
--- a/dash.el
+++ b/dash.el
@@ -1536,6 +1536,11 @@ structure such as plist or alist."
"-zip-with"
"--zip-with"
"-zip"
+ "-zip-fill"
+ "-cycle"
+ "-pad"
+ "-annotate"
+ "--annotate"
"-table"
"-table-flat"
"-partial"