From: Philip Kaludercic Date: Tue, 18 Oct 2022 20:44:35 +0000 (+0200) Subject: Remove modifications to the list of ignored files in source packages X-Git-Tag: emacs-29.0.90~1616^2~307^2~48 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e08e9bc40f2c309bf119659a6496759493bd35e1;p=emacs.git Remove modifications to the list of ignored files in source packages * lisp/emacs-lisp/package-vc.el (package-vc-unpack-1): Remove 'vc-ignore' calls. --- diff --git a/lisp/emacs-lisp/package-vc.el b/lisp/emacs-lisp/package-vc.el index c420c5f87a7..83038418529 100644 --- a/lisp/emacs-lisp/package-vc.el +++ b/lisp/emacs-lisp/package-vc.el @@ -268,13 +268,9 @@ The output is written out into PKG-FILE." (pkg-file (expand-file-name (package--description-file pkg-dir) pkg-dir))) ;; Generate autoloads (package-generate-autoloads name pkg-dir) - (vc-ignore (concat "/" (file-relative-name - (expand-file-name (format "%s-autoloads.el" name)) - default-directory))) ;; Generate package file (package-vc-generate-description-file pkg-desc pkg-file) - (vc-ignore (concat "/" (file-relative-name pkg-file default-directory))) ;; Detect a manual (when (executable-find "install-info") @@ -284,8 +280,7 @@ The output is written out into PKG-FILE." (when (length= texi-files 1) (call-process "install-info" nil nil nil (concat "--dir=" dir-file) - (car texi-files))) - (vc-ignore "/dir")))) + (car texi-files)))))) ;; Update package-alist. (let ((new-desc (package-load-descriptor pkg-dir)))