diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2021-11-18 15:05:47 +0100 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2021-11-18 20:54:32 +0100 |
commit | 09a5dd862832ffe82914baeab0ba7d4a0ab5fb62 (patch) | |
tree | 9194c6d3347598d2dd4ea02aed3ccc496f908efc /test/lisp/emacs-lisp | |
parent | 03fba4da8fc689dabc65e693631cd17d819b5135 (diff) | |
download | emacs-09a5dd862832ffe82914baeab0ba7d4a0ab5fb62.tar.gz emacs-09a5dd862832ffe82914baeab0ba7d4a0ab5fb62.tar.bz2 emacs-09a5dd862832ffe82914baeab0ba7d4a0ab5fb62.zip |
String backslash corrections
* lisp/net/shr.el (shr-tag-video): Remove ineffective backslash.
* test/lisp/emacs-lisp/package-tests.el
(package-test-macro-compilation-gz): Make dot literal as intended.
Diffstat (limited to 'test/lisp/emacs-lisp')
-rw-r--r-- | test/lisp/emacs-lisp/package-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/emacs-lisp/package-tests.el b/test/lisp/emacs-lisp/package-tests.el index 3b12f57e5ce..efa9f834110 100644 --- a/test/lisp/emacs-lisp/package-tests.el +++ b/test/lisp/emacs-lisp/package-tests.el @@ -383,7 +383,7 @@ but with a different end of line convention (bug#48137)." (mapc #'delete-file (directory-files-recursively dir "\\`[^\\.].*\\.elc\\'")) (mapc (lambda (f) (call-process "gunzip" nil nil nil f)) - (directory-files-recursively dir "\\`[^\\.].*\\.el.gz\\'")))))) + (directory-files-recursively dir "\\`[^\\.].*\\.el\\.gz\\'")))))) (ert-deftest package-test-install-two-dependencies () "Install a package which includes a dependency." |