diff options
| author | Paul Eggert | 2012-10-04 22:57:24 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-10-04 22:57:24 -0700 |
| commit | 735135f9bc3c01b91ffef7c418dd9281bc347ab7 (patch) | |
| tree | 94c73a545a14f064a9e30559089769f60dfbbf34 /lisp/org | |
| parent | be636386220e8a73b57b03572c625fa92bcf199a (diff) | |
| download | emacs-735135f9bc3c01b91ffef7c418dd9281bc347ab7.tar.gz emacs-735135f9bc3c01b91ffef7c418dd9281bc347ab7.zip | |
Spelling fixes.
Diffstat (limited to 'lisp/org')
| -rw-r--r-- | lisp/org/ChangeLog | 12 | ||||
| -rw-r--r-- | lisp/org/org-agenda.el | 28 | ||||
| -rw-r--r-- | lisp/org/org-element.el | 2 | ||||
| -rw-r--r-- | lisp/org/org-faces.el | 2 | ||||
| -rw-r--r-- | lisp/org/org-remember.el | 2 |
5 files changed, 20 insertions, 26 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index 066ebf3e6e0..ef40c9316cf 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog | |||
| @@ -2079,13 +2079,7 @@ | |||
| 2079 | 2079 | ||
| 2080 | * org-agenda.el (org-agenda-list): Ensures that the list returned | 2080 | * org-agenda.el (org-agenda-list): Ensures that the list returned |
| 2081 | by `org-agenda-add-time-grid-maybe' is appended to ̀rtnall' before | 2081 | by `org-agenda-add-time-grid-maybe' is appended to ̀rtnall' before |
| 2082 | checking if the latter is emtpy. | 2082 | checking if the latter is empty. |
| 2083 | |||
| 2084 | 2012-09-30 Christophe Junke <junke.christophe@gmail.com> (tiny change) | ||
| 2085 | |||
| 2086 | * org-agenda.el (org-agenda-list): Ensure that the list returned | ||
| 2087 | by `org-agenda-add-time-grid-maybe' is appended to `rtnall' before | ||
| 2088 | checking if the latter is emtpy. | ||
| 2089 | 2083 | ||
| 2090 | 2012-09-30 Christophe Rhodes <csr21@cantab.net> (tiny change) | 2084 | 2012-09-30 Christophe Rhodes <csr21@cantab.net> (tiny change) |
| 2091 | 2085 | ||
| @@ -2691,7 +2685,7 @@ | |||
| 2691 | * org-element.el (org-element-paragraph-parser): Fix parsing of | 2685 | * org-element.el (org-element-paragraph-parser): Fix parsing of |
| 2692 | paragraph at the beginning of an item. | 2686 | paragraph at the beginning of an item. |
| 2693 | 2687 | ||
| 2694 | * org.el (org-mode): Set back comment-start-skip so comment-dwin | 2688 | * org.el (org-mode): Set back comment-start-skip so comment-dwim |
| 2695 | can tell a keyword from a comment. | 2689 | can tell a keyword from a comment. |
| 2696 | 2690 | ||
| 2697 | * org.el (org-set-autofill-regexps): Install new comment line | 2691 | * org.el (org-set-autofill-regexps): Install new comment line |
| @@ -2959,7 +2953,7 @@ | |||
| 2959 | 2953 | ||
| 2960 | * org-capture.el (org-capture-fill-template): Expand %<num> escape | 2954 | * org-capture.el (org-capture-fill-template): Expand %<num> escape |
| 2961 | sequences into text entered for <num>'th %^{PROMPT} escape. | 2955 | sequences into text entered for <num>'th %^{PROMPT} escape. |
| 2962 | 2956 | ||
| 2963 | * org-capture.el (org-capture-fill-template): Fixed regexp for | 2957 | * org-capture.el (org-capture-fill-template): Fixed regexp for |
| 2964 | %<n> expandos to match any positive integer. | 2958 | %<n> expandos to match any positive integer. |
| 2965 | (org-capture-templates): Updated docstring accordingly. | 2959 | (org-capture-templates): Updated docstring accordingly. |
diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el index 97241b6ac65..32fecde2af0 100644 --- a/lisp/org/org-agenda.el +++ b/lisp/org/org-agenda.el | |||
| @@ -823,7 +823,7 @@ because you will take care of it on the day when scheduled." | |||
| 823 | :group 'org-agenda-daily/weekly | 823 | :group 'org-agenda-daily/weekly |
| 824 | :version "24.1" | 824 | :version "24.1" |
| 825 | :type '(choice | 825 | :type '(choice |
| 826 | (const :tag "Alwas show prewarning" nil) | 826 | (const :tag "Always show prewarning" nil) |
| 827 | (const :tag "Remove prewarning if entry is scheduled" t) | 827 | (const :tag "Remove prewarning if entry is scheduled" t) |
| 828 | (integer :tag "Restart prewarning N days before deadline"))) | 828 | (integer :tag "Restart prewarning N days before deadline"))) |
| 829 | 829 | ||
| @@ -2837,7 +2837,7 @@ L Timeline for current buffer # List stuck projects (!=configure) | |||
| 2837 | (widen) | 2837 | (widen) |
| 2838 | (let ((inhibit-read-only t)) | 2838 | (let ((inhibit-read-only t)) |
| 2839 | (add-text-properties (point-min) (point-max) | 2839 | (add-text-properties (point-min) (point-max) |
| 2840 | `(org-serie t org-serie-redo-cmd ,redo))) | 2840 | `(org-series t org-series-redo-cmd ,redo))) |
| 2841 | (setq org-agenda-redo-command redo) | 2841 | (setq org-agenda-redo-command redo) |
| 2842 | (goto-char (point-min))) | 2842 | (goto-char (point-min))) |
| 2843 | (org-agenda-fit-window-to-buffer) | 2843 | (org-agenda-fit-window-to-buffer) |
| @@ -4019,7 +4019,7 @@ given in `org-agenda-start-on-weekday'." | |||
| 4019 | `(org-agenda-type agenda | 4019 | `(org-agenda-type agenda |
| 4020 | org-last-args (,arg ,start-day ,span) | 4020 | org-last-args (,arg ,start-day ,span) |
| 4021 | org-redo-cmd ,org-agenda-redo-command | 4021 | org-redo-cmd ,org-agenda-redo-command |
| 4022 | org-serie-cmd ,org-cmd)) | 4022 | org-series-cmd ,org-cmd)) |
| 4023 | (if (eq org-agenda-show-log-scoped 'clockcheck) | 4023 | (if (eq org-agenda-show-log-scoped 'clockcheck) |
| 4024 | (org-agenda-show-clocking-issues)) | 4024 | (org-agenda-show-clocking-issues)) |
| 4025 | (org-agenda-finalize) | 4025 | (org-agenda-finalize) |
| @@ -4324,7 +4324,7 @@ in `org-agenda-text-search-extra-files'." | |||
| 4324 | `(org-agenda-type search | 4324 | `(org-agenda-type search |
| 4325 | org-last-args (,todo-only ,string ,edit-at) | 4325 | org-last-args (,todo-only ,string ,edit-at) |
| 4326 | org-redo-cmd ,org-agenda-redo-command | 4326 | org-redo-cmd ,org-agenda-redo-command |
| 4327 | org-serie-cmd ,org-cmd)) | 4327 | org-series-cmd ,org-cmd)) |
| 4328 | (org-agenda-finalize) | 4328 | (org-agenda-finalize) |
| 4329 | (setq buffer-read-only t)))) | 4329 | (setq buffer-read-only t)))) |
| 4330 | 4330 | ||
| @@ -4414,7 +4414,7 @@ for a keyword. A numeric prefix directly selects the Nth keyword in | |||
| 4414 | `(org-agenda-type todo | 4414 | `(org-agenda-type todo |
| 4415 | org-last-args ,arg | 4415 | org-last-args ,arg |
| 4416 | org-redo-cmd ,org-agenda-redo-command | 4416 | org-redo-cmd ,org-agenda-redo-command |
| 4417 | org-serie-cmd ,org-cmd)) | 4417 | org-series-cmd ,org-cmd)) |
| 4418 | (org-agenda-finalize) | 4418 | (org-agenda-finalize) |
| 4419 | (setq buffer-read-only t)))) | 4419 | (setq buffer-read-only t)))) |
| 4420 | 4420 | ||
| @@ -4499,7 +4499,7 @@ The prefix arg TODO-ONLY limits the search to TODO entries." | |||
| 4499 | `(org-agenda-type tags | 4499 | `(org-agenda-type tags |
| 4500 | org-last-args (,todo-only ,match) | 4500 | org-last-args (,todo-only ,match) |
| 4501 | org-redo-cmd ,org-agenda-redo-command | 4501 | org-redo-cmd ,org-agenda-redo-command |
| 4502 | org-serie-cmd ,org-cmd)) | 4502 | org-series-cmd ,org-cmd)) |
| 4503 | (org-agenda-finalize) | 4503 | (org-agenda-finalize) |
| 4504 | (setq buffer-read-only t)))) | 4504 | (setq buffer-read-only t)))) |
| 4505 | 4505 | ||
| @@ -6583,7 +6583,7 @@ Org-mode buffers visited directly by the user will not be touched." | |||
| 6583 | (org-agenda-Quit)) | 6583 | (org-agenda-Quit)) |
| 6584 | 6584 | ||
| 6585 | (defun org-agenda-kill-all-agenda-buffers () | 6585 | (defun org-agenda-kill-all-agenda-buffers () |
| 6586 | "Kill all buffers in `org-agena-mode'. | 6586 | "Kill all buffers in `org-agenda-mode'. |
| 6587 | This is used when toggling sticky agendas. You can also explicitly invoke it | 6587 | This is used when toggling sticky agendas. You can also explicitly invoke it |
| 6588 | with `C-c a C-k'." | 6588 | with `C-c a C-k'." |
| 6589 | (interactive) | 6589 | (interactive) |
| @@ -6623,20 +6623,20 @@ in the agenda." | |||
| 6623 | (lprops (get 'org-agenda-redo-command 'org-lprops)) | 6623 | (lprops (get 'org-agenda-redo-command 'org-lprops)) |
| 6624 | (redo-cmd (get-text-property p 'org-redo-cmd)) | 6624 | (redo-cmd (get-text-property p 'org-redo-cmd)) |
| 6625 | (last-args (get-text-property p 'org-last-args)) | 6625 | (last-args (get-text-property p 'org-last-args)) |
| 6626 | (org-agenda-overriding-cmd (get-text-property p 'org-serie-cmd)) | 6626 | (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd)) |
| 6627 | (org-agenda-overriding-cmd-arguments | 6627 | (org-agenda-overriding-cmd-arguments |
| 6628 | (unless (eq all t) | 6628 | (unless (eq all t) |
| 6629 | (cond ((listp last-args) | 6629 | (cond ((listp last-args) |
| 6630 | (cons (or cpa (car last-args)) (cdr last-args))) | 6630 | (cons (or cpa (car last-args)) (cdr last-args))) |
| 6631 | ((stringp last-args) | 6631 | ((stringp last-args) |
| 6632 | last-args)))) | 6632 | last-args)))) |
| 6633 | (serie-redo-cmd (get-text-property p 'org-serie-redo-cmd))) | 6633 | (series-redo-cmd (get-text-property p 'org-series-redo-cmd))) |
| 6634 | (put 'org-agenda-tag-filter :preset-filter nil) | 6634 | (put 'org-agenda-tag-filter :preset-filter nil) |
| 6635 | (put 'org-agenda-category-filter :preset-filter nil) | 6635 | (put 'org-agenda-category-filter :preset-filter nil) |
| 6636 | (and cols (org-columns-quit)) | 6636 | (and cols (org-columns-quit)) |
| 6637 | (message "Rebuilding agenda buffer...") | 6637 | (message "Rebuilding agenda buffer...") |
| 6638 | (if serie-redo-cmd | 6638 | (if series-redo-cmd |
| 6639 | (eval serie-redo-cmd) | 6639 | (eval series-redo-cmd) |
| 6640 | (org-let lprops '(eval redo-cmd))) | 6640 | (org-let lprops '(eval redo-cmd))) |
| 6641 | (setq org-agenda-undo-list nil | 6641 | (setq org-agenda-undo-list nil |
| 6642 | org-agenda-pending-undo-list nil) | 6642 | org-agenda-pending-undo-list nil) |
| @@ -7035,7 +7035,7 @@ Negative selection means regexp must not match for selection of an entry." | |||
| 7035 | (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt)) | 7035 | (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt)) |
| 7036 | (text-property-any (point-min) (point-max) 'org-today t) | 7036 | (text-property-any (point-min) (point-max) 'org-today t) |
| 7037 | (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda) | 7037 | (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda) |
| 7038 | (and (get-text-property (min (1- (point-max)) (point)) 'org-serie) | 7038 | (and (get-text-property (min (1- (point-max)) (point)) 'org-series) |
| 7039 | (org-agenda-goto-block-beginning)) | 7039 | (org-agenda-goto-block-beginning)) |
| 7040 | (point-min)))) | 7040 | (point-min)))) |
| 7041 | 7041 | ||
| @@ -7090,7 +7090,7 @@ With prefix ARG, go forward that many times the current span." | |||
| 7090 | ;; `cmd' may have been set by `org-agenda-run-series' which | 7090 | ;; `cmd' may have been set by `org-agenda-run-series' which |
| 7091 | ;; uses `org-agenda-overriding-cmd' to decide whether | 7091 | ;; uses `org-agenda-overriding-cmd' to decide whether |
| 7092 | ;; overriding is allowed for `cmd' | 7092 | ;; overriding is allowed for `cmd' |
| 7093 | (get-text-property (min (1- (point-max)) (point)) 'org-serie-cmd)) | 7093 | (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd)) |
| 7094 | (org-agenda-overriding-arguments | 7094 | (org-agenda-overriding-arguments |
| 7095 | (list (car args) sd span))) | 7095 | (list (car args) sd span))) |
| 7096 | (org-agenda-redo) | 7096 | (org-agenda-redo) |
| @@ -7183,7 +7183,7 @@ SPAN may be `day', `week', `month', `year'." | |||
| 7183 | org-starting-day)) | 7183 | org-starting-day)) |
| 7184 | (sd (org-agenda-compute-starting-span sd span n)) | 7184 | (sd (org-agenda-compute-starting-span sd span n)) |
| 7185 | (org-agenda-overriding-cmd | 7185 | (org-agenda-overriding-cmd |
| 7186 | (get-text-property (min (1- (point-max)) (point)) 'org-serie-cmd)) | 7186 | (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd)) |
| 7187 | (org-agenda-overriding-arguments | 7187 | (org-agenda-overriding-arguments |
| 7188 | (list (car args) sd span))) | 7188 | (list (car args) sd span))) |
| 7189 | (org-agenda-redo) | 7189 | (org-agenda-redo) |
diff --git a/lisp/org/org-element.el b/lisp/org/org-element.el index 3d67ae7892a..8b44d4936f5 100644 --- a/lisp/org/org-element.el +++ b/lisp/org/org-element.el | |||
| @@ -3924,7 +3924,7 @@ Return Org syntax as a string." | |||
| 3924 | (and (eq type 'paragraph) | 3924 | (and (eq type 'paragraph) |
| 3925 | (equal data (car (org-element-contents parent))) | 3925 | (equal data (car (org-element-contents parent))) |
| 3926 | (memq (org-element-type parent) | 3926 | (memq (org-element-type parent) |
| 3927 | '(footnote-definiton item)))))) | 3927 | '(footnote-definition item)))))) |
| 3928 | ""))) | 3928 | ""))) |
| 3929 | (funcall (intern (format "org-element-%s-interpreter" type)) | 3929 | (funcall (intern (format "org-element-%s-interpreter" type)) |
| 3930 | data | 3930 | data |
diff --git a/lisp/org/org-faces.el b/lisp/org/org-faces.el index cfa4c1c30a5..51aead1b8bb 100644 --- a/lisp/org/org-faces.el +++ b/lisp/org/org-faces.el | |||
| @@ -293,7 +293,7 @@ column view defines special faces for each outline level. See the file | |||
| 293 | (((class color) (min-colors 8) (background dark)) (:foreground "red" :inverse-video t)) | 293 | (((class color) (min-colors 8) (background dark)) (:foreground "red" :inverse-video t)) |
| 294 | (t (:inverse-video t)))) | 294 | (t (:inverse-video t)))) |
| 295 | "Face for highlighting the calendar day when using `org-read-date'. | 295 | "Face for highlighting the calendar day when using `org-read-date'. |
| 296 | Using a bold face here might cause discrepencies while displaying the | 296 | Using a bold face here might cause discrepancies while displaying the |
| 297 | calendar." | 297 | calendar." |
| 298 | :group 'org-faces) | 298 | :group 'org-faces) |
| 299 | 299 | ||
diff --git a/lisp/org/org-remember.el b/lisp/org/org-remember.el index 7a1eb7762de..dd493749295 100644 --- a/lisp/org/org-remember.el +++ b/lisp/org/org-remember.el | |||
| @@ -64,7 +64,7 @@ and `org-remember-default-headline'. To force prompting anyway, use | |||
| 64 | \\[universal-argument] \\[org-remember-finalize] to file the note. | 64 | \\[universal-argument] \\[org-remember-finalize] to file the note. |
| 65 | 65 | ||
| 66 | When this variable is nil, \\[org-remember-finalize] gives you the prompts, and | 66 | When this variable is nil, \\[org-remember-finalize] gives you the prompts, and |
| 67 | \\[universal-argument] \\[org-remember-finalize] triggers the fasttrack." | 67 | \\[universal-argument] \\[org-remember-finalize] triggers the fast track." |
| 68 | :group 'org-remember | 68 | :group 'org-remember |
| 69 | :type 'boolean) | 69 | :type 'boolean) |
| 70 | 70 | ||