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.
emacsM-x eval-regionでselectedを使用して実行すると、ミニバッファーに結果が表示されません。どうすれば同じように結果を確認できますか?(+ 1 1)2C-x C-e
M-x
eval-region
(+ 1 1)
2
C-x
C-e
この関数を試してください:
(defun my-eval-region (start end) "Evaluate the region, printing the result to the minibuffer." (interactive "r") (eval-region start end t))