[elpa] master 0da442d: Put tar'd files at the end to fix build in some environments.
branch: master commit 0da442d9c63a9d25de9f43831ab1691d77ef3b81 Author: Jackson Ray Hamilton Commit: Jackson Ray Hamilton Put tar'd files at the end to fix build in some environments. --- GNUmakefile |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 8edb2f8..e9dd3db 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -153,8 +153,8 @@ included_els := $(shell \ prev=$$(pwd);\ cd $$pt; \ if [ -f .elpaignore ]; then \ - tar -ch *.el --no-recursion \ - --exclude-vcs -X .elpaignore \ + tar -ch --no-recursion \ + --exclude-vcs -X .elpaignore *.el\ | tar --list; \ else \ ls -1 *.el; \
[elpa] master 2b54f09: Improve handling of reader errors in el-search-atom-list
branch: master commit 2b54f09c3a3f82294fdea876648287fcb416604b Author: Michael Heerdegen Commit: Michael Heerdegen Improve handling of reader errors in el-search-atom-list --- packages/el-search/el-search.el | 16 +++- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/packages/el-search/el-search.el b/packages/el-search/el-search.el index 601ce4d..a986516 100644 --- a/packages/el-search/el-search.el +++ b/packages/el-search/el-search.el @@ -934,8 +934,13 @@ non-nil else." (condition-case err (while t (push (read (current-buffer)) forms)) (end-of-file forms) -(error "Unexpected error whilst reading %s position %s: %s" - buffer (point) err +(error + (message "%s in %S\nat position %d - skipping" + (error-message-string err) + file-name-or-buffer + (point)) + (sit-for 3.) + '() (buffer (if (bufferp file-name-or-buffer) file-name-or-buffer (get-file-buffer file-name-or-buffer @@ -952,9 +957,10 @@ non-nil else." (insert-file-contents file-name-or-buffer)) (set-syntax-table emacs-lisp-mode-syntax-table) (funcall get-atoms -(puthash file-name - (cons (nth 5 (file-attributes file-name)) atom-list) - el-search--atom-list-cache) +(when atom-list ;empty in case of error + (puthash file-name + (cons (nth 5 (file-attributes file-name)) atom-list) + el-search--atom-list-cache)) atom-list)) (defun el-search--flatten-tree (tree)
[elpa] master 32d83f7: el-search: bump version to 1.2.2
branch: master commit 32d83f7f346a8159bff574487ec05085bb971f0c Author: Michael Heerdegen Commit: Michael Heerdegen el-search: bump version to 1.2.2 --- packages/el-search/el-search.el |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/el-search/el-search.el b/packages/el-search/el-search.el index a986516..86214ae 100644 --- a/packages/el-search/el-search.el +++ b/packages/el-search/el-search.el @@ -7,7 +7,7 @@ ;; Created: 29 Jul 2015 ;; Keywords: lisp ;; Compatibility: GNU Emacs 25 -;; Version: 1.2.1 +;; Version: 1.2.2 ;; Package-Requires: ((emacs "25") (stream "2.2.3"))