Function: helpful--symbol-at-point-exactly

helpful--symbol-at-point-exactly is a byte-compiled function defined in helpful.el.

Signature

(helpful--symbol-at-point-exactly)

Documentation

Return the symbol at point, if it's bound.

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--symbol-at-point-exactly ()
  "Return the symbol at point, if it's bound."
  (let ((sym (symbol-at-point)))
    (when (helpful--bound-p sym)
      sym)))