[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/dash 78fc2a3 038/426: Quote and downcase params with di
From: |
Phillip Lord |
Subject: |
[elpa] externals/dash 78fc2a3 038/426: Quote and downcase params with digits in them too. |
Date: |
Tue, 04 Aug 2015 19:36:33 +0000 |
branch: externals/dash
commit 78fc2a3a5e8f4dc3d6fa3ce3bbd98d2bf39ce3b2
Author: Magnar Sveen <address@hidden>
Commit: Magnar Sveen <address@hidden>
Quote and downcase params with digits in them too.
---
README.md | 4 ++--
examples-to-docs.el | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index b90fb85..ec26500 100644
--- a/README.md
+++ b/README.md
@@ -146,7 +146,7 @@ additional args.
### !difference `(list list2)`
-Return a new list with only the members of `list` that are not in LIST2.
+Return a new list with only the members of `list` that are not in `list2`.
The test for equality is done with `equal`,
or with `!compare-fn` if that's non-nil.
@@ -158,7 +158,7 @@ or with `!compare-fn` if that's non-nil.
### !intersection `(list list2)`
-Return a new list containing only the elements that are members of both `list`
and LIST2.
+Return a new list containing only the elements that are members of both `list`
and `list2`.
The test for equality is done with `equal`,
or with `!compare-fn` if that's non-nil.
diff --git a/examples-to-docs.el b/examples-to-docs.el
index 04bc329..a5685e3 100644
--- a/examples-to-docs.el
+++ b/examples-to-docs.el
@@ -24,7 +24,7 @@
(defun quote-docstring (docstring)
(let (case-fold-search)
- (setq docstring (replace-regexp-in-string "\\b\\([A-Z][A-Z-]*\\)\\b"
'quote-and-downcase docstring t))
+ (setq docstring (replace-regexp-in-string "\\b\\([A-Z][A-Z-]*[0-9]*\\)\\b"
'quote-and-downcase docstring t))
(setq docstring (replace-regexp-in-string "`\\([^ ]+\\)'" "`\\1`"
docstring t)))
docstring)
- [elpa] externals/dash 722fea6 033/426: Include docs in README, (continued)
- [elpa] externals/dash 722fea6 033/426: Include docs in README, Phillip Lord, 2015/08/04
- [elpa] externals/dash ec27b47 025/426: Turn tests into examples that can both be tested and turned into docs, Phillip Lord, 2015/08/04
- [elpa] externals/dash 4cc4147 035/426: Fix typo, Phillip Lord, 2015/08/04
- [elpa] externals/dash eea3c53 045/426: Move function list above anaphoric function description., Phillip Lord, 2015/08/04
- [elpa] externals/dash e7d5c01 043/426: Add note about README being autogenerated to Development notes., Phillip Lord, 2015/08/04
- [elpa] externals/dash 6c39876 003/426: Set up test framework with one basic test, Phillip Lord, 2015/08/04
- [elpa] externals/dash 2a9e600 046/426: Make functions paragraph into a list of links, Phillip Lord, 2015/08/04
- [elpa] externals/dash 5f6ea16 036/426: Fix typo, Phillip Lord, 2015/08/04
- [elpa] externals/dash 1b0d54f 044/426: Simplify readme generation., Phillip Lord, 2015/08/04
- [elpa] externals/dash 26113a1 041/426: Add pre-commit.sh that runs tests and updates readme., Phillip Lord, 2015/08/04
- [elpa] externals/dash 78fc2a3 038/426: Quote and downcase params with digits in them too.,
Phillip Lord <=
- [elpa] externals/dash 32053cd 042/426: Update readme with development notes., Phillip Lord, 2015/08/04
- [elpa] externals/dash 0912aa2 048/426: Rename !uniq to !distinct, Phillip Lord, 2015/08/04
- [elpa] externals/dash 24262a1 054/426: Add file-local font-lock for defexamples and =>, Phillip Lord, 2015/08/04
- [elpa] externals/dash 9312469 053/426: !keep, Phillip Lord, 2015/08/04
- [elpa] externals/dash 657ee8b 040/426: Slight improvements to docs., Phillip Lord, 2015/08/04
- [elpa] externals/dash 286d1d8 050/426: Show quotes around strings in examples., Phillip Lord, 2015/08/04
- [elpa] externals/dash db8a745 056/426: Add !each, Phillip Lord, 2015/08/04
- [elpa] externals/dash f59b480 055/426: Add !some and !every?, Phillip Lord, 2015/08/04
- [elpa] externals/dash b337ef9 052/426: Sync examples-to-docs.el with the one in s.el, Phillip Lord, 2015/08/04
- [elpa] externals/dash 2b89641 049/426: Remove needless duplication., Phillip Lord, 2015/08/04