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/mh-e | |
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/mh-e')
-rw-r--r-- | lisp/mh-e/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/mh-e/mh-alias.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 3db1780af63..d326132c92e 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,3 +1,8 @@ +2013-06-18 Juri Linkov <juri@jurta.org> + + * mh-alias.el (mh-alias-local-users): Add non-nil arg REPLACE to + the call of `shell-command-on-region'. (Bug#14637) + 2013-05-22 Glenn Morris <rgm@gnu.org> * mh-speed.el (mh-speed-view): diff --git a/lisp/mh-e/mh-alias.el b/lisp/mh-e/mh-alias.el index cc56c981809..e97ba1dd83e 100644 --- a/lisp/mh-e/mh-alias.el +++ b/lisp/mh-e/mh-alias.el @@ -141,7 +141,7 @@ Exclude all aliases already in `mh-alias-alist' from \"ali\"" (insert-file-contents "/etc/passwd"))) ((stringp mh-alias-local-users) (insert mh-alias-local-users "\n") - (shell-command-on-region (point-min) (point-max) mh-alias-local-users t) + (shell-command-on-region (point-min) (point-max) mh-alias-local-users t t) (goto-char (point-min)))) (while (< (point) (point-max)) (cond |