Function: smart-lisp-at-load-expression-p

smart-lisp-at-load-expression-p is a byte-compiled function defined in hmouse-tag.el.

Signature

(smart-lisp-at-load-expression-p)

Documentation

Return t if on the first line of a Lisp library load expression, else nil.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-tag.el
(defun smart-lisp-at-load-expression-p ()
  "Return t if on the first line of a Lisp library load expression, else nil."
    (save-excursion
      (beginning-of-line)
      (looking-at "\\(;*[ \t]*\\)?(\\(autoload\\|load\\|require\\)\\s-")))