diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-09-25 14:04:35 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-09-25 14:04:35 +0200 |
commit | 40b1a3a937512ff35884df2e8e19c3feed9f2688 (patch) | |
tree | 6229aa08095d281ddb33c6fdd040a0a43fc58f06 /lisp/org | |
parent | da43f02119eb86ff8a4ee8ce7454b10d261ef714 (diff) | |
download | emacs-40b1a3a937512ff35884df2e8e19c3feed9f2688.tar.gz |
Fix typos.
* lisp/finder.el (finder-unknown-keywords):
* lisp/progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count):
* lisp/progmodes/etags.el (tags-table-including): Fix typos in docstrings.
* lisp/cedet/semantic/lex.el (semantic-ignore-comments): Doc fix.
* lisp/cedet/semantic/symref/list.el (semantic-symref-list-rename-open-hits):
Fix typo in error message.
(semantic-symref-list-map-open-hits): Fix typo in docstring.
* lisp/org/org-agenda.el (org-agenda-hide-tags-regexp):
* lisp/org/org.el (org-refile-targets): Fix typos in docstrings.
Diffstat (limited to 'lisp/org')
-rw-r--r-- | lisp/org/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/org/org-agenda.el | 2 | ||||
-rw-r--r-- | lisp/org/org.el | 4 |
3 files changed, 8 insertions, 3 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index e08f0780562..72d4df0189b 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog @@ -1,3 +1,8 @@ +2010-09-25 Juanma Barranquero <lekktu@gmail.com> + + * org.el (org-refile-targets): + * org-agenda.el (org-agenda-hide-tags-regexp): Fix typos in docstrings. + 2010-08-19 Glenn Morris <rgm@gnu.org> * org.el (org-outline-overlay-data, org-set-outline-overlay-data) diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el index a3d288065d3..68a592b5fae 100644 --- a/lisp/org/org-agenda.el +++ b/lisp/org/org-agenda.el @@ -1359,7 +1359,7 @@ When non-nil, this must be the number of minutes, e.g. 60 for one hour." "Regular expression used to filter away specific tags in agenda views. This means that these tags will be present, but not be shown in the agenda line. Secondary filtering will still work on the hidden tags. -Nil means don't hide any tags." +The value nil means don't hide any tags." :group 'org-agenda-line-format :type '(choice (const :tag "Hide none" nil) diff --git a/lisp/org/org.el b/lisp/org/org.el index a2965e87d22..19759371023 100644 --- a/lisp/org/org.el +++ b/lisp/org/org.el @@ -1797,8 +1797,8 @@ This is list of cons cells. Each cell contains: - a specification of the files to be considered, either a list of files, or a symbol whose function or variable value will be used to retrieve a file name or a list of file names. If you use `org-agenda-files' for - that, all agenda files will be scanned for targets. Nil means consider - headings in the current buffer. + that, all agenda files will be scanned for targets. The value nil means + consider headings in the current buffer. - A specification of how to find candidate refile targets. This may be any of: - a cons cell (:tag . \"TAG\") to identify refile targets by a tag. |