aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1999-06-10 01:19:33 +0000
committerKarl Heuer1999-06-10 01:19:33 +0000
commit634376231a95ea020b9ed602b3a3e2a7812b0655 (patch)
tree57fcad42de2e09806548fce17309e9858aa6ed18
parenta0730fbd38eacadc67a854e66345c5d4576fc8a4 (diff)
downloademacs-634376231a95ea020b9ed602b3a3e2a7812b0655.tar.gz
emacs-634376231a95ea020b9ed602b3a3e2a7812b0655.zip
(shell-command): Avoid printing "mark set" message.
-rw-r--r--lisp/simple.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 88dc0dac2fd..00d89282496 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1142,7 +1142,7 @@ specifies the value of ERROR-BUFFER."
1142 (make-temp-name "scor")) 1142 (make-temp-name "scor"))
1143 nil))) 1143 nil)))
1144 (barf-if-buffer-read-only) 1144 (barf-if-buffer-read-only)
1145 (push-mark) 1145 (push-mark nil t)
1146 ;; We do not use -f for csh; we will not support broken use of 1146 ;; We do not use -f for csh; we will not support broken use of
1147 ;; .cshrcs. Even the BSD csh manual says to use 1147 ;; .cshrcs. Even the BSD csh manual says to use
1148 ;; "if ($?prompt) exit" before things which are not useful 1148 ;; "if ($?prompt) exit" before things which are not useful