summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2011-11-28 15:11:52 +0100
committerBastien Guerry <bzg@altern.org>2011-11-28 15:11:52 +0100
commitfcdeeb9101b101fd921ff3866f14c775a55b220f (patch)
tree5b391d715db41d4f43b2a35db1ec66199bdb466f
parentfd94918e418838fce6a2b04e27ec7f89aec87a34 (diff)
downloadorg-mode-fcdeeb9101b101fd921ff3866f14c775a55b220f.tar.gz
Fix typos fixed in Emacs trunk.
* org-freemind.el (org-freemind-write-mm-buffer): Fix typo. * org-colview.el (org-columns-edit-value) (org-columns-next-allowed-value): Fix typos. * org-bibtex.el (org-bibtex-autogen-keys): Fix typo. * org-clock.el (org-clock-special-range): Fix typo. Thanks to Paul Eggert for these fixes.
-rw-r--r--lisp/org-bibtex.el2
-rw-r--r--lisp/org-clock.el2
-rw-r--r--lisp/org-colview.el4
-rw-r--r--lisp/org-freemind.el2
4 files changed, 5 insertions, 5 deletions
diff --git a/lisp/org-bibtex.el b/lisp/org-bibtex.el
index 6d6bc1c..c9d62fb 100644
--- a/lisp/org-bibtex.el
+++ b/lisp/org-bibtex.el
@@ -214,7 +214,7 @@
"List to hold parsed bibtex entries.")
(defcustom org-bibtex-autogen-keys nil
- "Set to a truthy value to use `bibtex-generate-autokey' to generate keys."
+ "Set to a truth value to use `bibtex-generate-autokey' to generate keys."
:group 'org-bibtex
:type 'boolean)
diff --git a/lisp/org-clock.el b/lisp/org-clock.el
index 5dbe4dc..2534229 100644
--- a/lisp/org-clock.el
+++ b/lisp/org-clock.el
@@ -1919,7 +1919,7 @@ the returned times will be formatted strings."
shiftedm (- 13 (* 3 (nth 1 tmp)))
shiftedq (- 5 (nth 1 tmp))))
(setq d 1 h 0 m 0 d1 1 month shiftedm month1 (+ 3 shiftedm) h1 0 m1 0 y shiftedy))
- ((> (+ q shift) 0) ; shift is whitin this year
+ ((> (+ q shift) 0) ; shift is within this year
(setq shiftedq (+ q shift))
(setq shiftedy y)
(setq d 1 h 0 m 0 d1 1 month (+ 1 (* 3 (- (+ q shift) 1))) month1 (+ 4 (* 3 (- (+ q shift) 1))) h1 0 m1 0))))
diff --git a/lisp/org-colview.el b/lisp/org-colview.el
index c1fb555..84d1897 100644
--- a/lisp/org-colview.el
+++ b/lisp/org-colview.el
@@ -477,7 +477,7 @@ Where possible, use the standard interface for changing this line."
((equal major-mode 'org-agenda-mode)
(org-columns-eval eval)
;; The following let preserves the current format, and makes sure
- ;; that in only a single file things need to be upated.
+ ;; that in only a single file things need to be updated.
(let* ((org-agenda-overriding-columns-format org-columns-current-fmt)
(buffer (marker-buffer pom))
(org-agenda-contributing-files
@@ -608,7 +608,7 @@ an integer, select that value."
((equal major-mode 'org-agenda-mode)
(org-columns-eval '(org-entry-put pom key nval))
;; The following let preserves the current format, and makes sure
- ;; that in only a single file things need to be upated.
+ ;; that in only a single file things need to be updated.
(let* ((org-agenda-overriding-columns-format org-columns-current-fmt)
(buffer (marker-buffer pom))
(org-agenda-contributing-files
diff --git a/lisp/org-freemind.el b/lisp/org-freemind.el
index 736228e..7055bfa 100644
--- a/lisp/org-freemind.el
+++ b/lisp/org-freemind.el
@@ -659,7 +659,7 @@ Otherwise give an error say the file exists."
(with-current-buffer mm-buffer
(erase-buffer)
(setq buffer-file-coding-system 'utf-8)
- ;; Fix-me: Currentl Freemind (ver 0.9.0 RC9) does not support this:
+ ;; Fix-me: Currently Freemind (ver 0.9.0 RC9) does not support this:
;;(insert "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n")
(insert "<map version=\"0.9.0\">\n")
(insert "<!-- To view this file, download free mind mapping software FreeMind from http://freemind.sourceforge.net -->\n"))