diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2016-04-30 00:11:15 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2016-04-30 00:11:15 +0200 |
commit | 33d2c67bff0992ecbc0fe38556683242b9d1a4ae (patch) | |
tree | c1691fc147ffcc4a69218881c7d743a2d6ee09d1 /lisp/menu-bar.el | |
parent | 6baca4911ec901579749dbf7596011d90fea3781 (diff) | |
download | emacs-33d2c67bff0992ecbc0fe38556683242b9d1a4ae.tar.gz emacs-33d2c67bff0992ecbc0fe38556683242b9d1a4ae.tar.bz2 emacs-33d2c67bff0992ecbc0fe38556683242b9d1a4ae.zip |
Doc fixes for menu-bar.el
* lisp/menu-bar.el (clipboard-kill-ring-save): Describe the
REGION parameter (bug#18028).
(clipboard-kill-region): Ditto.
Diffstat (limited to 'lisp/menu-bar.el')
-rw-r--r-- | lisp/menu-bar.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 82d8fada943..933e2d22f67 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -541,7 +541,9 @@ (yank))) (defun clipboard-kill-ring-save (beg end &optional region) - "Copy region to kill ring, and save in the GUI's clipboard." + "Copy region to kill ring, and save in the GUI's clipboard. +If the optional argument REGION is non-nil, the function ignores +BEG and END, and saves the current region instead." (interactive "r\np") (let ((gui-select-enable-clipboard t) (interprogram-cut-function (or interprogram-cut-function @@ -549,7 +551,9 @@ (kill-ring-save beg end region))) (defun clipboard-kill-region (beg end &optional region) - "Kill the region, and save it in the GUI's clipboard." + "Kill the region, and save it in the GUI's clipboard. +If the optional argument REGION is non-nil, the function ignores +BEG and END, and kills the current region instead." (interactive "r\np") (let ((gui-select-enable-clipboard t) (interprogram-cut-function (or interprogram-cut-function |