[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/relint a50ed0b 20/21: Don't escape printable chars in r
From: |
Mattias Engdegård |
Subject: |
[elpa] externals/relint a50ed0b 20/21: Don't escape printable chars in rx warnings |
Date: |
Sun, 3 May 2020 11:13:39 -0400 (EDT) |
branch: externals/relint
commit a50ed0b3c15339ae3979d3aa2ac61bf8bdf7a160
Author: Mattias Engdegård <address@hidden>
Commit: Mattias Engdegård <address@hidden>
Don't escape printable chars in rx warnings
---
relint.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/relint.el b/relint.el
index b775b8a..cbdd340 100644
--- a/relint.el
+++ b/relint.el
@@ -1355,7 +1355,7 @@ character alternative: `[' followed by a
regexp-generating expression."
(if (eq from to)
(char-to-string from)
(format "%c-%c" from to))
- t))
+ nil))
(defun relint--intersecting-range (from to ranges)
"Return a range in RANGES intersecting [FROM,TO], or nil if none.
@@ -1438,7 +1438,7 @@ than just to a surrounding or producing expression."
file pos (if exact-path (cons i path) path)
(format-message
"Single-character range `%s'"
- (relint--escape-string (format "%c-%c" from to) t))
+ (relint--escape-string (format "%c-%c" from to)
nil))
s j))
((= to (1+ from))
(relint--warn
- [elpa] externals/relint ac75b62 04/21: Check rx-to-string, and the 'regexp' and 'eval' subforms, (continued)
- [elpa] externals/relint ac75b62 04/21: Check rx-to-string, and the 'regexp' and 'eval' subforms, Mattias Engdegård, 2020/05/03
- [elpa] externals/relint 09ef3df 05/21: Describe the new xr wrapped subsumption warning, Mattias Engdegård, 2020/05/03
- [elpa] externals/relint eb178d5 06/21: Check assignments to imenu-generic-expression, Mattias Engdegård, 2020/05/03
- [elpa] externals/relint 2eba4d7 09/21: Describe new bol/eol/eos warnings, Mattias Engdegård, 2020/05/03
- [elpa] externals/relint cf2a2ae 14/21: Do file-specific checks on arguments to known functions, Mattias Engdegård, 2020/05/03
- [elpa] externals/relint f6d0fed 15/21: Describe the new file-specific warnings, Mattias Engdegård, 2020/05/03
- [elpa] externals/relint 1bf7f25 13/21: Check auto-mode-alist with file-specific checks, Mattias Engdegård, 2020/05/03
- [elpa] externals/relint 4fcc322 16/21: Delay call to file-relative-name until needed, Mattias Engdegård, 2020/05/03
- [elpa] externals/relint 326cfe2 11/21: Check calls to directory-files(-and-attributes), Mattias Engdegård, 2020/05/03
- [elpa] externals/relint 5d3f78d 19/21: Update xr messages ("repetition" changed to "option"), Mattias Engdegård, 2020/05/03
- [elpa] externals/relint a50ed0b 20/21: Don't escape printable chars in rx warnings,
Mattias Engdegård <=
- [elpa] externals/relint cdd65ae 10/21: Add section about how relint works, Mattias Engdegård, 2020/05/03
- [elpa] externals/relint 636e172 12/21: Add filename-specific checks (unused so far), Mattias Engdegård, 2020/05/03
- [elpa] externals/relint 008fad0 17/21: Repair relint-current-buffer after thunking file parameter, Mattias Engdegård, 2020/05/03
- [elpa] externals/relint 8f49686 18/21: Move file-specific checks to xr, Mattias Engdegård, 2020/05/03
- [elpa] externals/relint a001a05 21/21: Increment version to 1.16, Mattias Engdegård, 2020/05/03