summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2016-09-24 09:03:00 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2016-09-24 09:03:00 +0200
commit3880789ea54a6d31690496fbce6cd2d3ab84b7d6 (patch)
tree3be4160b16171f3e61a702b48a1b1ce2bd7fadea
parent67129acdfe5a04833d1a1504b53e6ade94fdb042 (diff)
downloadorg-mode-3880789ea54a6d31690496fbce6cd2d3ab84b7d6.tar.gz
Fix a docstring
* lisp/org.el (org-cut-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 f8fbed0..0736bb9 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -20948,11 +20948,11 @@ See the individual commands for more information."
(defun org-cut-special ()
"Cut region in table or cut current subtree.
-Calls `org-table-copy' or `org-cut-subtree', depending on context.
-See the individual commands for more information."
+Calls `org-table-cut-region' or `org-cut-subtree', depending on
+context. See the individual commands for more information."
(interactive)
(call-interactively
- (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
+ (if (org-at-table-p) #'org-table-cut-region #'org-cut-subtree)))
(defun org-paste-special (arg)
"Paste rectangular region into table, or past subtree relative to level.