summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2016-01-14 17:51:39 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2016-01-14 21:27:14 +0100
commita8f278fedfb560b19351244e6bae6c349e9771c1 (patch)
tree479a367d8401a35284790afc398514ef4b80b3da
parent5a4e8d22399a6d8d051e21f730fe7f1254b193d3 (diff)
downloadorg-mode-a8f278fedfb560b19351244e6bae6c349e9771c1.tar.gz
org-table: Fix a comment
* lisp/org-table.el (org-table-end): Fix a comment.
-rw-r--r--lisp/org-table.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/org-table.el b/lisp/org-table.el
index e7ad931..7d6aba3 100644
--- a/lisp/org-table.el
+++ b/lisp/org-table.el
@@ -927,9 +927,9 @@ a table."
(match-beginning 0))
;; When the line right after the table is the last line in
;; the buffer with trailing spaces but no final newline
- ;; character, trailing spaces, be sure to catch the correct
- ;; ending at its beginning. In any other case, ending is
- ;; expected to be at point max.
+ ;; character, be sure to catch the correct ending at its
+ ;; beginning. In any other case, ending is expected to be
+ ;; at point max.
(t (goto-char (point-max))
(skip-chars-backward " \t")
(if (bolp) (point) (line-end-position))))))