diff options
| -rw-r--r-- | lisp/emacs-lisp/package.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 8b101c1323c..dd05c70dc8e 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -2260,6 +2260,7 @@ Otherwise no newline is inserted." | |||
| 2260 | (archive (if desc (package-desc-archive desc))) | 2260 | (archive (if desc (package-desc-archive desc))) |
| 2261 | (extras (and desc (package-desc-extras desc))) | 2261 | (extras (and desc (package-desc-extras desc))) |
| 2262 | (homepage (cdr (assoc :url extras))) | 2262 | (homepage (cdr (assoc :url extras))) |
| 2263 | (commit (cdr (assoc :commit extras))) | ||
| 2263 | (keywords (if desc (package-desc--keywords desc))) | 2264 | (keywords (if desc (package-desc--keywords desc))) |
| 2264 | (built-in (eq pkg-dir 'builtin)) | 2265 | (built-in (eq pkg-dir 'builtin)) |
| 2265 | (installable (and archive (not built-in))) | 2266 | (installable (and archive (not built-in))) |
| @@ -2332,6 +2333,8 @@ Otherwise no newline is inserted." | |||
| 2332 | (and version | 2333 | (and version |
| 2333 | (package--print-help-section "Version" | 2334 | (package--print-help-section "Version" |
| 2334 | (package-version-join version))) | 2335 | (package-version-join version))) |
| 2336 | (when commit | ||
| 2337 | (package--print-help-section "Commit" commit)) | ||
| 2335 | (when desc | 2338 | (when desc |
| 2336 | (package--print-help-section "Summary" | 2339 | (package--print-help-section "Summary" |
| 2337 | (package-desc-summary desc))) | 2340 | (package-desc-summary desc))) |