mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
* lisp/simple.el (shell-command-on-region): Use set-buffer-major-mode.
This enables globalized minor modes explicitly after get-buffer-create creates "*Shell Command Output*" buffer (bug#38111).
This commit is contained in:
parent
9ea3137bc8
commit
252e5a8852
@ -3925,6 +3925,7 @@ interactively, this is t."
|
||||
;; replacing its entire contents.
|
||||
(let ((buffer (get-buffer-create
|
||||
(or output-buffer "*Shell Command Output*"))))
|
||||
(set-buffer-major-mode buffer) ; Enable globalized modes (bug#38111)
|
||||
(unwind-protect
|
||||
(if (and (eq buffer (current-buffer))
|
||||
(or (not shell-command-dont-erase-buffer)
|
||||
|
Loading…
Reference in New Issue
Block a user