emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/dash 0c045f2 369/426: Highlight with el instead of cl


From: Phillip Lord
Subject: [elpa] externals/dash 0c045f2 369/426: Highlight with el instead of cl
Date: Tue, 04 Aug 2015 19:38:57 +0000

branch: externals/dash
commit 0c045f2d3c99e8c862d080e7470568dcbe8b4879
Author: Fredrik Bergroth <address@hidden>
Commit: Fredrik Bergroth <address@hidden>

    Highlight with el instead of cl
---
 dev/examples-to-docs.el |    2 +-
 readme-template.md      |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev/examples-to-docs.el b/dev/examples-to-docs.el
index 0cd5327..6d5044e 100644
--- a/dev/examples-to-docs.el
+++ b/dev/examples-to-docs.el
@@ -74,7 +74,7 @@ FUNCTION may reference an elisp function, alias, macro or a 
subr."
   (if (stringp function)
       (concat "\n" (s-replace "### " "## " function) "\n")
     (-let [(command-name signature docstring examples) function]
-      (format "#### %s `%s`\n\n%s\n\n```cl\n%s\n```\n"
+      (format "#### %s `%s`\n\n%s\n\n```el\n%s\n```\n"
               command-name
               signature
               (format-docstring docstring)
diff --git a/readme-template.md b/readme-template.md
index 97a8db3..fccdbfb 100644
--- a/readme-template.md
+++ b/readme-template.md
@@ -45,7 +45,7 @@ While `-map` takes a function to map over the list, you can 
also use
 the anaphoric form with double dashes - which will then be executed
 with `it` exposed as the list item. Here's an example:
 
-```cl
+```el
 (-map (lambda (n) (* n n)) '(1 2 3 4)) ;; normal version
 
 (--map (* it it) '(1 2 3 4)) ;; anaphoric version
@@ -53,7 +53,7 @@ with `it` exposed as the list item. Here's an example:
 
 of course the original can also be written like
 
-```cl
+```el
 (defun square (n) (* n n))
 
 (-map 'square '(1 2 3 4))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]