diff options
| author | Jimmy Yuen Ho Wong <wyuenho@gmail.com> | 2023-09-10 00:36:58 +0100 |
|---|---|---|
| committer | Wilfred Hughes <me@wilfred.me.uk> | 2023-09-11 08:47:35 -0700 |
| commit | 66ba816b26b68dd7df08e86f8b96eaae16c8d6a2 (patch) | |
| tree | e51cc7822983d9a155dcd1b077c2deb57a2ba7a4 /helpful.el | |
| parent | c57ff0d284b50ff430fe1f13fd48deaa0d1a910e (diff) | |
fix nil pos when building button for vars
Diffstat (limited to 'helpful.el')
| -rw-r--r-- | helpful.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1498,7 +1498,7 @@ buffer." ;; that. (save-excursion (condition-case _err - (setq pos (cdr (find-variable-noselect sym 'defvar))) + (setq pos (cdr (find-variable-noselect sym library-name))) (search-failed nil) ;; If your current Emacs instance doesn't match the source ;; code configured in find-function-C-source-directory, we can |
