diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-01-29 17:58:08 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-01-29 17:58:08 -0500 |
commit | a389b4d4bbe35a63ba19d14c40e19f4af049d43b (patch) | |
tree | bac2f5cec7ab51206ca4b5e67e25ad91465d45b9 | |
parent | 0a34ba8d6f769b730ab3bbf444bfc0b4756e5426 (diff) | |
download | emacs.d-a389b4d4bbe35a63ba19d14c40e19f4af049d43b.tar.gz |
Fix LaTeX narrow function doc
-rw-r--r-- | lisp/init-tex.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/init-tex.el b/lisp/init-tex.el index b2f4d0f..c4b73f0 100644 --- a/lisp/init-tex.el +++ b/lisp/init-tex.el @@ -37,8 +37,8 @@ not given, it is taken from the active region." (defun km/latex-narrow-to-paired-tag (&optional tag) "Narrow region to LaTeX tag. -This is meant for paired, like \"\\begin{document}\". If TAG is -not given, it is taken from the active region." +This is meant for paired elements, like \"\\begin{document}\". If +TAG is not given, it is taken from the active region." (interactive) (save-excursion (let* ((tag (or tag |