aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuri Linkov2020-06-09 02:28:53 +0300
committerJuri Linkov2020-06-09 02:28:53 +0300
commit6b9eac67590cf4396cdde5a21ace8e96d30a1ea2 (patch)
tree88bc1de9f9624591f05346e2eb76be6667335cc9 /lisp
parent43ad7dc1af327486963e5e3a3ae8efdb454fd38d (diff)
downloademacs-6b9eac67590cf4396cdde5a21ace8e96d30a1ea2.tar.gz
emacs-6b9eac67590cf4396cdde5a21ace8e96d30a1ea2.zip
* lisp/simple.el (shell-command-on-region): Fix docstring.
* lisp/simple.el (shell-command-on-region): Mention REGION-NONCONTIGUOUS-P in docstring (bug#41440) * etc/NEWS: Better example for 'windmove-display-default-keybindings'.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/simple.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 6d7600e414c..1555b376a36 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -3914,7 +3914,12 @@ is used for ERROR-BUFFER.
3914 3914
3915Optional seventh arg DISPLAY-ERROR-BUFFER, if non-nil, means to 3915Optional seventh arg DISPLAY-ERROR-BUFFER, if non-nil, means to
3916display the error buffer if there were any errors. When called 3916display the error buffer if there were any errors. When called
3917interactively, this is t." 3917interactively, this is t.
3918
3919Non-nil REGION-NONCONTIGUOUS-P means that the region is composed of
3920noncontiguous pieces. The most common example of this is a
3921rectangular region, where the pieces are separated by newline
3922characters."
3918 (interactive (let (string) 3923 (interactive (let (string)
3919 (unless (mark) 3924 (unless (mark)
3920 (user-error "The mark is not set now, so there is no region")) 3925 (user-error "The mark is not set now, so there is no region"))