summaryrefslogtreecommitdiff
path: root/lisp/init-text.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2015-01-07 23:13:38 -0500
committerKyle Meyer <kyle@kyleam.com>2015-01-07 23:13:38 -0500
commit3b7bd43479a4f7afc933afefe217170e277bda0e (patch)
tree5a2d24b47ece16b2f4abc2117f46b3ccbff3ed17 /lisp/init-text.el
parent965c259c182361e9a698b3ff2c466bf177ed3c81 (diff)
downloademacs.d-3b7bd43479a4f7afc933afefe217170e277bda0e.tar.gz
Fix some docstrings
Diffstat (limited to 'lisp/init-text.el')
-rw-r--r--lisp/init-text.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/init-text.el b/lisp/init-text.el
index ca14174..2a4e3cd 100644
--- a/lisp/init-text.el
+++ b/lisp/init-text.el
@@ -5,11 +5,12 @@
(defun km/export-wrapped-text (arg)
"Export the text in current buffer as wrapped text.
+
This is useful for preparing text in emacs and then exporting to
a wrapped buffer for pasting text (e.g., into a web form).
-If region is active, export is restricted to the region. If ARG
-is non-nil, the region is copied with `x-select-text'."
+If region is active, restrict export to the region. If ARG is
+non-nil, copy the region with `x-select-text'."
(interactive "P")
(let ((wrapped-buffer (get-buffer-create "*Wrapped export*"))
beg end)