diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-09 14:13:31 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-09 14:15:33 +0000 |
commit | 635bbc2a3e410f5b97a3f20e5b790712cc873cc2 (patch) | |
tree | 52231c22e2a5dcb75c801299ecec56ec77f55854 /sx-question-print.el | |
parent | 42157310ba599a05dce1664080213e31ab00a2d4 (diff) |
Fix some implementation bugs
Diffstat (limited to 'sx-question-print.el')
-rw-r--r-- | sx-question-print.el | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sx-question-print.el b/sx-question-print.el index 6b65d70..653ebab 100644 --- a/sx-question-print.el +++ b/sx-question-print.el @@ -436,11 +436,10 @@ font-locking." (setq beg (point)))) (setq end (point)) (sx-babel--make-pre-button - (buffer-substring - (save-excursion - (goto-char beg) - (line-beginning-position)) - end))))) + (save-excursion + (goto-char beg) + (line-beginning-position)) + end)))) (provide 'sx-question-print) ;;; sx-question-print.el ends here |