diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-16 12:00:32 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-16 12:00:32 -0200 |
commit | 6d8a8d5dc07fb8a58344775632716dbe781479a3 (patch) | |
tree | 0138626d2d0f11876e28f708f8b9864f032d69b1 | |
parent | 6e25c3b2e7da42c8e01daf62d79e4b66d618acf6 (diff) |
Hotfix wrong variable
-rw-r--r-- | sx-interaction.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-interaction.el b/sx-interaction.el index 7d32094..e7a4d94 100644 --- a/sx-interaction.el +++ b/sx-interaction.el @@ -60,7 +60,7 @@ If no object of the requested type could be returned, an error is thrown unless NOERROR is non-nil." (or (let ((data (get-char-property (point) 'sx--data-here))) (if (null type) data - (sx-assoc-let type + (sx-assoc-let data ;; Is data of the right type? (cl-case type (question (when .title data)) |