diff options
Diffstat (limited to 'lisp/org')
-rw-r--r-- | lisp/org/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/org/org-agenda.el | 6 | ||||
-rw-r--r-- | lisp/org/org-icalendar.el | 2 | ||||
-rw-r--r-- | lisp/org/org-table.el | 2 | ||||
-rw-r--r-- | lisp/org/org.el | 2 |
5 files changed, 11 insertions, 6 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index 8019e4cc093..80f63a1ee78 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog @@ -1,7 +1,12 @@ 2011-02-23 Juanma Barranquero <lekktu@gmail.com> + * org.el (org-maybe-keyword-time-regexp): + * org-icalendar.el (org-icalendar-store-UID): + * org-agenda.el (org-agenda-scheduled-leaders) + (org-agenda-deadline-leaders, org-agenda-filter-preset): * org-table.el (org-table-current-line-types) (org-table-current-begin-line, org-table-current-begin-pos): + (org-table-current-field-formula): Fix typos in docstrings. 2010-10-22 Juanma Barranquero <lekktu@gmail.com> diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el index 31cfa8ca173..4ad19b37339 100644 --- a/lisp/org/org-agenda.el +++ b/lisp/org/org-agenda.el @@ -1151,7 +1151,7 @@ range, respectively." (function)))) (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ") - "Text preceeding scheduled items in the agenda view. + "Text preceding scheduled items in the agenda view. This is a list with two strings. The first applies when the item is scheduled on the current day. The second applies when it has been scheduled previously, it may contain a %d indicating that this is the nth time that @@ -1164,7 +1164,7 @@ that passed since this item was scheduled first." (string :tag "Scheduled previously"))) (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: ") - "Text preceeding deadline items in the agenda view. + "Text preceding deadline items in the agenda view. This is a list with two strings. The first applies when the item has its deadline on the current day. The second applies when it is in the past or in the future, it may contain %d to capture how many days away the deadline @@ -2559,7 +2559,7 @@ removed from the entry content. Currently only `planning' is allowed here." (defvar org-agenda-filter nil) (defvar org-agenda-filter-preset nil "A preset of the tags filter used for secondary agenda filtering. -This must be a list of strings, each string must be a single tag preceeded +This must be a list of strings, each string must be a single tag preceded by \"+\" or \"-\". This variable should not be set directly, but agenda custom commands can bind it in the options section.") diff --git a/lisp/org/org-icalendar.el b/lisp/org/org-icalendar.el index 77e64d10a31..749d54341d0 100644 --- a/lisp/org/org-icalendar.el +++ b/lisp/org/org-icalendar.el @@ -157,7 +157,7 @@ The iCalendar standard requires that all entries have a unique identifier. Org will create these identifiers as needed. When this variable is non-nil, the created UIDs will be stored in the ID property of the entry. Then the next time this entry is exported, it will be exported with the same UID, -superceding the previous form of it. This is essential for +superseding the previous form of it. This is essential for synchronization services. This variable is not turned on by default because we want to avoid creating a property drawer in every entry if people are only playing with this feature, diff --git a/lisp/org/org-table.el b/lisp/org/org-table.el index 5bef54a928e..7d93a82f84e 100644 --- a/lisp/org/org-table.el +++ b/lisp/org/org-table.el @@ -1787,7 +1787,7 @@ If NLAST is a number, only the NLAST fields will actually be summed." "Return the formula active for the current field. Assumes that specials are in place. If KEY is given, return the key to this formula. -Otherwise return the formula preceeded with \"=\" or \":=\"." +Otherwise return the formula preceded with \"=\" or \":=\"." (let* ((name (car (rassoc (list (org-current-line) (org-table-current-column)) org-table-named-field-locations))) diff --git a/lisp/org/org.el b/lisp/org/org.el index 6fe3c96bec2..a7984df8487 100644 --- a/lisp/org/org.el +++ b/lisp/org/org.el @@ -3659,7 +3659,7 @@ Also put tags into group 4 if tags are present.") "Matches any of the 3 keywords, together with the time stamp.") (make-variable-buffer-local 'org-keyword-time-not-clock-regexp) (defvar org-maybe-keyword-time-regexp nil - "Matches a timestamp, possibly preceeded by a keyword.") + "Matches a timestamp, possibly preceded by a keyword.") (make-variable-buffer-local 'org-maybe-keyword-time-regexp) (defvar org-planning-or-clock-line-re nil "Matches a line with planning or clock info.") |