emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-25 4a2f33d 20/64: Doc fixes for menu-bar.el


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] emacs-25 4a2f33d 20/64: Doc fixes for menu-bar.el
Date: Sun, 01 May 2016 18:18:40 +0000

branch: emacs-25
commit 4a2f33d1a11e0608d521520afcb14ec13dd1a722
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Doc fixes for menu-bar.el
    
    * lisp/menu-bar.el (clipboard-kill-ring-save): Describe the
    REGION parameter (bug#18028).
    (clipboard-kill-region): Ditto.
    
    (cherry picked from commit 33d2c67bff0992ecbc0fe38556683242b9d1a4ae)
---
 lisp/menu-bar.el |    8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index 6281d7e..6571a4b 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -539,13 +539,17 @@
     (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))
     (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))
     (kill-region beg end region)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]