[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/relint 5720e12 07/16: Scan regexp arguments to function
From: |
Mattias Engdeg�rd |
Subject: |
[elpa] externals/relint 5720e12 07/16: Scan regexp arguments to functions in s.el |
Date: |
Mon, 30 Nov 2020 05:00:58 -0500 (EST) |
branch: externals/relint
commit 5720e122321715ff36c890b8612094559d4fb783
Author: Mattias Engdegård <mattiase@acm.org>
Commit: Mattias Engdegård <mattiase@acm.org>
Scan regexp arguments to functions in s.el
The following functions all take a regexp as first argument:
s-matches?, s-matches-p, s-match-strings-all, s-matched-positions-all,
s-match, s-slice-at, s-count-matches, s-count-matches-all,
s-split, s-split-up-to
---
relint.el | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/relint.el b/relint.el
index 7f46b46..08f61aa 100644
--- a/relint.el
+++ b/relint.el
@@ -1862,7 +1862,11 @@ directly."
'search-forward-regexp 'search-backward-regexp
'kill-matching-buffers
'keep-lines 'flush-lines 'how-many
- 'delete-matching-lines 'delete-non-matching-lines
'count-matches)
+ 'delete-matching-lines 'delete-non-matching-lines 'count-matches
+ ;; From s.el
+ 's-matches? 's-matches-p 's-match-strings-all
+ 's-matched-positions-all 's-match 's-slice-at
+ 's-count-matches 's-count-matches-all 's-split 's-split-up-to)
,re-arg . ,_)
(unless (and (symbolp re-arg)
(memq re-arg relint--checked-variables))
- [elpa] externals/relint updated (0c35e02 -> 26639c5), Mattias Engdeg�rd, 2020/11/30
- [elpa] externals/relint a1ea26c 01/16: Check regexp arguments to more functions, Mattias Engdeg�rd, 2020/11/30
- [elpa] externals/relint d0fa8a8 10/16: Fix false positives in regexp provenance checks, Mattias Engdeg�rd, 2020/11/30
- [elpa] externals/relint 29e5427 11/16: Recognise a few more `featurep` arguments, Mattias Engdeg�rd, 2020/11/30
- [elpa] externals/relint 26639c5 16/16: Require xr 1.20, Mattias Engdeg�rd, 2020/11/30
- [elpa] externals/relint 7690e3a 08/16: Scan font-lock-defaults correctly, Mattias Engdeg�rd, 2020/11/30
- [elpa] externals/relint 4b78e14 09/16: Add table of contents to README, and some advice, Mattias Engdeg�rd, 2020/11/30
- [elpa] externals/relint c792bde 15/16: Perform Emacs version check at compile time, Mattias Engdeg�rd, 2020/11/30
- [elpa] externals/relint c8fd922 12/16: Minor looking-at optimisation, Mattias Engdeg�rd, 2020/11/30
- [elpa] externals/relint 5720e12 07/16: Scan regexp arguments to functions in s.el,
Mattias Engdeg�rd <=
- [elpa] externals/relint f0241bc 13/16: Increment version to 1.19, Mattias Engdeg�rd, 2020/11/30
- [elpa] externals/relint 9173a91 05/16: Add progress indicator for interactive relint-directory, Mattias Engdeg�rd, 2020/11/30
- [elpa] externals/relint 5572c57 14/16: Emacs 26 compatibility: `directory-files-recursively`, Mattias Engdeg�rd, 2020/11/30
- [elpa] externals/relint 1c66438 06/16: Add string-search and string-replace to the list of pure functions, Mattias Engdeg�rd, 2020/11/30
- [elpa] externals/relint b572fcd 02/16: Run automatic tests on Emacs 27.1, Mattias Engdeg�rd, 2020/11/30
- [elpa] externals/relint 14a5135 03/16: Minor README correction, Mattias Engdeg�rd, 2020/11/30
- [elpa] externals/relint 8ee9f79 04/16: Avoid descending into .git/ when looking for .el files, Mattias Engdeg�rd, 2020/11/30