summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2016-09-24 09:04:40 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2016-09-24 09:04:40 +0200
commit038c50a72182e0cb8bba4c226e09dd5848802ce9 (patch)
tree7230801d2b2bb72841e90757cb04f5eb542a9018
parent3880789ea54a6d31690496fbce6cd2d3ab84b7d6 (diff)
downloadorg-mode-038c50a72182e0cb8bba4c226e09dd5848802ce9.tar.gz
Fix a docstring
* lisp/org.el (org-copy-special): Fix docstring. Tiny refactoring.
-rw-r--r--lisp/org.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 0736bb9..e03d655 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -20940,11 +20940,11 @@ this numeric value."
(defun org-copy-special ()
"Copy region in table or copy current subtree.
-Calls `org-table-copy' or `org-copy-subtree', depending on context.
-See the individual commands for more information."
+Calls `org-table-copy-region' or `org-copy-subtree', depending on
+context. See the individual commands for more information."
(interactive)
(call-interactively
- (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
+ (if (org-at-table-p) #'org-table-copy-region #'org-copy-subtree)))
(defun org-cut-special ()
"Cut region in table or cut current subtree.