From 6689b537c84f27eb2dae70a2422f2da99b57aaab Mon Sep 17 00:00:00 2001 From: Nicolas Richard Date: Mon, 29 Jun 2015 09:08:47 +0200 Subject: [PATCH] * package.el (describe-package): Use symbol-at-point as additional guess --- lisp/emacs-lisp/package.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 88dd6ac70f3..9f563457748 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -2104,7 +2104,8 @@ will be deleted." (defun describe-package (package) "Display the full documentation of PACKAGE (a symbol)." (interactive - (let* ((guess (function-called-at-point))) + (let* ((guess (or (function-called-at-point) + (symbol-at-point)))) (require 'finder-inf nil t) ;; Load the package list if necessary (but don't activate them). (unless package--initialized -- 2.11.4.GIT