Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在 emacs 中M-x eval-region使用(+ 1 1)selected 执行时,我在 minibuffer 中看不到结果2。我怎样才能看到结果C-x C-e呢?
M-x
eval-region
(+ 1 1)
2
C-x
C-e
Try this function:
(defun my-eval-region (start end) "Evaluate the region, printing the result to the minibuffer." (interactive "r") (eval-region start end t))