3

当我在 emacs 中M-x eval-region使用(+ 1 1)selected 执行时,我在 minibuffer 中看不到结果2。我怎样才能看到结果C-x C-e呢?

4

1 回答 1

2

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))
于 2012-06-06T16:20:48.527 回答