aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2002-03-09 09:06:04 +0000
committerEli Zaretskii2002-03-09 09:06:04 +0000
commit30883773558ec1ed38ec830232b8454370089faa (patch)
tree7fad9d2484cce8a17675baf43643bfa3f9dd9bb4
parentad497129bafbe28df203d8a5bc309daa6d2ae646 (diff)
downloademacs-30883773558ec1ed38ec830232b8454370089faa.tar.gz
emacs-30883773558ec1ed38ec830232b8454370089faa.zip
(shell-command-on-region): Call push-mark with
non-nil second arg, to suppress the "Mark set" message.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/simple.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index cd1700f91cd..c87c977d7fe 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12002-03-09 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * simple.el (shell-command-on-region): Call push-mark with
4 non-nil second arg, to suppress the "Mark set" message.
5
12002-03-08 Andreas Schwab <schwab@suse.de> 62002-03-08 Andreas Schwab <schwab@suse.de>
2 7
3 * textmodes/texinfo.el: Change Maintainer to FSF, as requested by 8 * textmodes/texinfo.el: Change Maintainer to FSF, as requested by
diff --git a/lisp/simple.el b/lisp/simple.el
index 676264dc31a..d0a5033d01b 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1424,7 +1424,7 @@ specifies the value of ERROR-BUFFER."
1424 (let ((swap (and replace (< start end)))) 1424 (let ((swap (and replace (< start end))))
1425 ;; Don't muck with mark unless REPLACE says we should. 1425 ;; Don't muck with mark unless REPLACE says we should.
1426 (goto-char start) 1426 (goto-char start)
1427 (and replace (push-mark)) 1427 (and replace (push-mark (point) 'nomsg))
1428 (setq exit-status 1428 (setq exit-status
1429 (call-process-region start end shell-file-name t 1429 (call-process-region start end shell-file-name t
1430 (if error-file 1430 (if error-file