diff options
author | Juri Linkov <juri@jurta.org> | 2013-06-18 23:24:44 +0300 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2013-06-18 23:24:44 +0300 |
commit | 0950aa27a260158ab01e434281d7ea0ee9f8d023 (patch) | |
tree | 27e05c137176fc829cb73318fc7c18aa63f2a39f /lisp/emulation/viper-cmd.el | |
parent | 8fbcca1658ad9604616f8fa9d2223d9993007e47 (diff) | |
download | emacs-0950aa27a260158ab01e434281d7ea0ee9f8d023.tar.gz |
Add explicit arg REPLACE to the callers of `shell-command-on-region'.
* lisp/simple.el (shell-command-on-region): Doc fix.
* lisp/emulation/vi.el (vi-shell-op):
* lisp/emulation/vip.el (vip-execute-com, ex-command):
* lisp/emulation/viper-cmd.el (viper-exec-bang):
* lisp/emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
the call of `shell-command-on-region'.
* lisp/mh-e/mh-alias.el (mh-alias-local-users): Add non-nil arg REPLACE to
the call of `shell-command-on-region'.
Fixes: debbugs:14637
Diffstat (limited to 'lisp/emulation/viper-cmd.el')
-rw-r--r-- | lisp/emulation/viper-cmd.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/viper-cmd.el b/lisp/emulation/viper-cmd.el index b2e476befd4..e7b371365e4 100644 --- a/lisp/emulation/viper-cmd.el +++ b/lisp/emulation/viper-cmd.el @@ -1548,7 +1548,7 @@ as a Meta key and any number of multiple escapes are allowed." (car viper-shell-history) )) viper-last-shell-com) - t))) + t t))) (defun viper-exec-equals (m-com com) (save-excursion |