Wilfred / elisp-def

Find Emacs Lisp definitions
63 stars 6 forks source link

Comments can't reference let-bound variables #7

Open Wilfred opened 6 years ago

Wilfred commented 6 years ago
(defun foo () 
  (let ((xyz 123))
    ;; See `xyz'.
    ))

Neither the start nor the end of xyz works here.