Controls for which packages Emacs runs extra build commands when
installing directly from the package VCS repository.
+---
+*** New command 'package-vc-log-incoming'.
+This commands displays incoming changes for a VC package without
+modifying the current checkout.
+
---
*** New command to start an inferior Emacs loading only specific packages.
The new command 'package-isolate' will start a new Emacs process, as
(vc-prepare-patch (package-maintainers pkg-desc t)
subject revisions)))
+(defun package-vc-log-incoming (pkg-desc)
+ "Call `vc-log-incoming' for the package PKG-DESC."
+ (interactive
+ (list (package-vc--read-package-desc "Incoming log for package: " t)))
+ (let ((default-directory (package-desc-dir pkg-desc)))
+ (call-interactively #'vc-log-incoming)))
+
(provide 'package-vc)
;;; package-vc.el ends here