Skip to content

Commit

Permalink
[bot] "built_in_updates" Sun Jul 31 14:28:15 UTC 2022
Browse files Browse the repository at this point in the history
  • Loading branch information
SpacemacsBot authored and smile13241324 committed Jul 31, 2022
1 parent b994a52 commit d5126be
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/libs/mocker.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; mocker.el --- mocking framework for emacs
;;; mocker.el --- mocking framework for emacs -*- lexical-binding: t -*-

;; Copyright (C) 2011 Yann Hodique.

Expand Down
12 changes: 8 additions & 4 deletions core/libs/quelpa.el
Original file line number Diff line number Diff line change
Expand Up @@ -463,10 +463,14 @@ The string in the capture group should be parsed as valid by `version-to-list'."
;;; Internal Variables

(defconst quelpa-build-default-files-spec
'("*.el" "*.el.in" "dir"
"*.info" "*.texi" "*.texinfo"
'("*.el" "lisp/*.el"
"dir" "*.info" "*.texi" "*.texinfo"
"doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el"))
"docs/dir" "docs/*.info" "docs/*.texi" "docs/*.texinfo"
(:exclude
".dir-locals.el" "lisp/.dir-locals.el"
"test.el" "tests.el" "*-test.el" "*-tests.el"
"lisp/test.el" "lisp/tests.el" "lisp/*-test.el" "lisp/*-tests.el"))
"Default value for :files attribute in recipes.")

;;; Utilities
Expand Down Expand Up @@ -1202,7 +1206,7 @@ Tests and sets variable `quelpa--tar-type' if not already set."
"--exclude=_FOSSIL_"
"--exclude=.bzr"
"--exclude=.hg"
(append (and quelpa-build-explicit-tar-format-p '("--format=gnu"))
(append (and quelpa-build-explicit-tar-format-p (eq (quelpa--tar-type) 'gnu) '("--format=gnu"))
(or (mapcar (lambda (fn) (concat dir "/" fn)) files) (list dir)))))

(defun quelpa-build--find-package-commentary (file-path)
Expand Down

0 comments on commit d5126be

Please sign in to comment.