;;;###autoload
(defun shortdoc-display-group (group &optional function)
"Pop to a buffer with short documentation summary for functions in GROUP.
+Interactively, prompt for GROUP.
If FUNCTION is non-nil, place point on the entry for FUNCTION (if any).
If SAME-WINDOW, don't pop to a new window."
- (interactive (list (completing-read "Show summary for functions in: "
- shortdoc--groups)))
+ (interactive
+ (list
+ (completing-read "Show summary for functions in group: " shortdoc--groups)))
(pop-to-buffer (shortdoc-display-group-1 group))
(goto-char (point-min))
(when function