aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org
diff options
context:
space:
mode:
authorPaul Eggert <[email protected]>2011-11-19 23:30:16 -0800
committerPaul Eggert <[email protected]>2011-11-19 23:30:16 -0800
commit40ba43b4b71df1d51954bdad071e74243c4aea7c (patch)
treee4cb03937e72463278264e9684481d68ece4698c /lisp/org
parent24901d610c9ff524e7e7c132dca1cd4312368db0 (diff)
Spelling fixes.
Diffstat (limited to 'lisp/org')
-rw-r--r--lisp/org/org-capture.el2
-rw-r--r--lisp/org/org-list.el2
-rw-r--r--lisp/org/org-table.el2
3 files changed, 3 insertions, 3 deletions
diff --git a/lisp/org/org-capture.el b/lisp/org/org-capture.el
index 24aea5d7ea..e3a87b77b5 100644
--- a/lisp/org/org-capture.el
+++ b/lisp/org/org-capture.el
@@ -1449,7 +1449,7 @@ The template may still contain \"%?\" for cursor positioning."
(goto-char (point-min))
(while (looking-at "[ \t]*\n") (replace-match ""))
(if (re-search-forward "[ \t\n]*\\'" nil t) (replace-match "\n"))
- ;; Return the expanded tempate and kill the temporary buffer
+ ;; Return the expanded template and kill the temporary buffer
(untabify (point-min) (point-max))
(set-buffer-modified-p nil)
(prog1 (buffer-string) (kill-buffer (current-buffer))))))
diff --git a/lisp/org/org-list.el b/lisp/org/org-list.el
index 9184f0c3d5..cc8103e3c1 100644
--- a/lisp/org/org-list.el
+++ b/lisp/org/org-list.el
@@ -3008,7 +3008,7 @@ Valid parameters PARAMS are:
Alternatively, each parameter can also be a form returning
a string. These sexp can use keywords `counter' and `depth',
-reprensenting respectively counter associated to the current
+representing respectively counter associated to the current
item, and depth of the current sub-list, starting at 0.
Obviously, `counter' is only available for parameters applying to
items."
diff --git a/lisp/org/org-table.el b/lisp/org/org-table.el
index 92c14f4cd5..76e4eae4b4 100644
--- a/lisp/org/org-table.el
+++ b/lisp/org/org-table.el
@@ -2641,7 +2641,7 @@ in the buffer and column1 and column2 are table column numbers."
(prog1 (org-trim (org-table-get-field c1))
(if highlight (org-table-highlight-rectangle (point) (point)))))
;; A range, return a vector
- ;; First sort the numbers to get a regular ractangle
+ ;; First sort the numbers to get a regular rectangle
(if (< r2 r1) (setq tmp r1 r1 r2 r2 tmp))
(if (< c2 c1) (setq tmp c1 c1 c2 c2 tmp))
(if corners-only