[elpa] externals/relint fd43a5f 2/7: Permit relint-current-buffer in *scratch*

2020-03-05 Thread Mattias Engdeg�rd
branch: externals/relint commit fd43a5f0de6f22a2a126fcec3fd2632d11329638 Author: Mattias Engdegård Commit: Mattias Engdegård Permit relint-current-buffer in *scratch* Allow any buffer whose major mode is derived from emacs-lisp-mode; this includes lisp-interaction-mode.

[elpa] externals/xr updated (dcf5240 -> 7842512)

2020-03-05 Thread Mattias Engdeg�rd
mattiase pushed a change to branch externals/xr. from dcf5240 Increment version to 1.16 new 45108ee Expand strings to characters in subset computation new 376fd03 Reduce consing in hot paths new 7842512 Increment version to 1.17 Summary of changes:

[elpa] externals/xr 376fd03 2/3: Reduce consing in hot paths

2020-03-05 Thread Mattias Engdeg�rd
branch: externals/xr commit 376fd031242b8f43274e0fe7a650b4ba61b36115 Author: Mattias Engdegård Commit: Mattias Engdegård Reduce consing in hot paths Use more destructive operations and avoiding match-string where unnecessary. --- xr.el | 24 1 file

[elpa] externals/relint bc7f295 5/7: Better position accuracy in various lists of regexps

2020-03-05 Thread Mattias Engdeg�rd
branch: externals/relint commit bc7f295932f5fe5fadc45184b7ee38e47b74e9f2 Author: Mattias Engdegård Commit: Mattias Engdegård Better position accuracy in various lists of regexps --- relint.el| 173 --- test/1.expected | 80

[elpa] externals/relint 67f4363 1/7: Don't erase the *relint* buffer from relint-buffer

2020-03-05 Thread Mattias Engdeg�rd
branch: externals/relint commit 67f43634438f25eb4a1cf99b5859dbf89e535d37 Author: Mattias Engdegård Commit: Mattias Engdegård Don't erase the *relint* buffer from relint-buffer Since relint-buffer doesn't write to *relint*, that buffer should remain untouched. --- relint.el |

[elpa] externals/relint feba965 3/7: Add severity field to tuple returned from relint-buffer

2020-03-05 Thread Mattias Engdeg�rd
branch: externals/relint commit feba9658d98dc0fa6ba9d34b415f05f68c7805bb Author: Mattias Engdegård Commit: Mattias Engdegård Add severity field to tuple returned from relint-buffer It takes the conventional values 'warning' and 'error' (and perhaps 'info' in the future). The

[elpa] externals/xr 45108ee 1/3: Expand strings to characters in subset computation

2020-03-05 Thread Mattias Engdeg�rd
branch: externals/xr commit 45108ee88584bdad42db81d7d8c5b4923b586eb4 Author: Mattias Engdegård Commit: Mattias Engdegård Expand strings to characters in subset computation This is faster and performs less consing than using single-char strings. --- xr-test.el | 12

[elpa] externals/xr 7842512 3/3: Increment version to 1.17

2020-03-05 Thread Mattias Engdeg�rd
branch: externals/xr commit 7842512a73d2a6dab3f100921be2a0733f77149d Author: Mattias Engdegård Commit: Mattias Engdegård Increment version to 1.17 --- xr.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xr.el b/xr.el index d5be9d8..772605e 100644 --- a/xr.el +++

[elpa] externals/relint 83e677d 7/7: Increment version to 1.15

2020-03-05 Thread Mattias Engdeg�rd
branch: externals/relint commit 83e677d07a79b6f2c0232f0b03c14dd5e1539b1d Author: Mattias Engdegård Commit: Mattias Engdegård Increment version to 1.15 Require xr 1.17. --- relint.el | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/relint.el b/relint.el

[elpa] externals/relint 8956b21 6/7: Check for mistakes in rx 'any' forms

2020-03-05 Thread Mattias Engdeg�rd
branch: externals/relint commit 8956b21a5213efd10f6b80216ae74b45b370cc2d Author: Mattias Engdegård Commit: Mattias Engdegård Check for mistakes in rx 'any' forms These checks are similar to those done by xr in string regexps. --- README | 5 ++ relint.el| 153

[elpa] externals/relint updated (c2d3f3b -> 83e677d)

2020-03-05 Thread Mattias Engdeg�rd
mattiase pushed a change to branch externals/relint. from c2d3f3b Increment version to 1.14 new 67f4363 Don't erase the *relint* buffer from relint-buffer new fd43a5f Permit relint-current-buffer in *scratch* new feba965 Add severity field to tuple returned

[elpa] externals/relint 7dab4f2 4/7: Slight macro safety improvement

2020-03-05 Thread Mattias Engdeg�rd
branch: externals/relint commit 7dab4f25800d3c016fc1a9d52ff59cfbad39905a Author: Mattias Engdegård Commit: Mattias Engdegård Slight macro safety improvement Use 'macroexpand-1' instead of 'macroexpand' to get better control over macro expansion. Some of the 'safe' macros are