diff options
| author | Wilfred Hughes <me@wilfred.me.uk> | 2018-03-31 19:25:37 +0100 |
|---|---|---|
| committer | Wilfred Hughes <me@wilfred.me.uk> | 2018-03-31 19:26:39 +0100 |
| commit | 5681a5df8e157d0dae9c99df5455755353a68c8b (patch) | |
| tree | ad9e602761ce3ac4b9c3215282b06bde02050498 /helpful.el | |
| parent | f06fe10b07c8011290488db92653beb910e7cfac (diff) | |
Ensure we can find the definitions of interactively defined functions
Diffstat (limited to 'helpful.el')
| -rw-r--r-- | helpful.el | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -895,10 +895,10 @@ If the source code cannot be found, return the sexp used." (setq source (propertize source 'helpful-path (buffer-file-name buf) 'helpful-pos start-pos - 'helpful-pos-is-start t)))) - (when (and buf created) - (kill-buffer buf)) - (throw 'source source)) + 'helpful-pos-is-start t))) + (when (and buf created) + (kill-buffer buf)) + (throw 'source source))) (when callable-p ;; Could not find source -- probably defined interactively, or via |
