diff options
Diffstat (limited to 'gnosis.el')
-rw-r--r-- | gnosis.el | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1028,9 +1028,9 @@ Used to reveal all clozes left with `gnosis-face-cloze-unanswered' face." (func-name (intern (format "gnosis-review-%s" (downcase type))))) (if (fboundp func-name) (progn - (with-current-buffer (switch-to-buffer (get-buffer-create "*gnosis*")) - (gnosis-mode) - (funcall func-name id))) + (pop-to-buffer (get-buffer-create "*gnosis*")) + (gnosis-mode) + (funcall func-name id)) (error "Malformed note type: '%s'" type)))) |