diff options
| author | K. Handa | 2015-09-02 18:28:54 +0900 |
|---|---|---|
| committer | K. Handa | 2015-09-02 18:28:54 +0900 |
| commit | e7b62736aade24620c8ba6fa6bd467d017f16ee0 (patch) | |
| tree | d00a2203437a168b2414c6b73afc00a88d90b4b1 /lisp/org | |
| parent | ae08d073d7e2738580341534adc3c5924dc76860 (diff) | |
| parent | 30866274e21c5f0a1c5f60cfe290743e7d482349 (diff) | |
| download | emacs-e7b62736aade24620c8ba6fa6bd467d017f16ee0.tar.gz emacs-e7b62736aade24620c8ba6fa6bd467d017f16ee0.zip | |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'lisp/org')
| -rw-r--r-- | lisp/org/org-agenda.el | 14 | ||||
| -rw-r--r-- | lisp/org/org-protocol.el | 4 | ||||
| -rw-r--r-- | lisp/org/ox-html.el | 2 |
3 files changed, 10 insertions, 10 deletions
diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el index a3c8b84bfca..3a87f6bedbd 100644 --- a/lisp/org/org-agenda.el +++ b/lisp/org/org-agenda.el | |||
| @@ -1990,8 +1990,8 @@ the lower-case version of all tags." | |||
| 1990 | "Alist of characters and custom functions for bulk actions. | 1990 | "Alist of characters and custom functions for bulk actions. |
| 1991 | For example, this value makes those two functions available: | 1991 | For example, this value makes those two functions available: |
| 1992 | 1992 | ||
| 1993 | '((?R set-category) | 1993 | ((?R set-category) |
| 1994 | (?C bulk-cut)) | 1994 | (?C bulk-cut)) |
| 1995 | 1995 | ||
| 1996 | With selected entries in an agenda buffer, `B R' will call | 1996 | With selected entries in an agenda buffer, `B R' will call |
| 1997 | the custom function `set-category' on the selected entries. | 1997 | the custom function `set-category' on the selected entries. |
| @@ -4937,13 +4937,13 @@ the `regexp' or `notregexp' element. | |||
| 4937 | `todo' and `nottodo' accept as an argument a list of todo | 4937 | `todo' and `nottodo' accept as an argument a list of todo |
| 4938 | keywords, which may include \"*\" to match any todo keyword. | 4938 | keywords, which may include \"*\" to match any todo keyword. |
| 4939 | 4939 | ||
| 4940 | (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\")) | 4940 | (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\")) |
| 4941 | 4941 | ||
| 4942 | would skip all entries with \"TODO\" or \"WAITING\" keywords. | 4942 | would skip all entries with \"TODO\" or \"WAITING\" keywords. |
| 4943 | 4943 | ||
| 4944 | Instead of a list, a keyword class may be given. For example: | 4944 | Instead of a list, a keyword class may be given. For example: |
| 4945 | 4945 | ||
| 4946 | (org-agenda-skip-entry-if 'nottodo 'done) | 4946 | (org-agenda-skip-entry-if \\='nottodo \\='done) |
| 4947 | 4947 | ||
| 4948 | would skip entries that haven't been marked with any of \"DONE\" | 4948 | would skip entries that haven't been marked with any of \"DONE\" |
| 4949 | keywords. Possible classes are: `todo', `done', `any'. | 4949 | keywords. Possible classes are: `todo', `done', `any'. |
| @@ -10005,10 +10005,10 @@ calling the function returns nil. This function takes one | |||
| 10005 | argument: an entry from `org-agenda-get-day-entries'. | 10005 | argument: an entry from `org-agenda-get-day-entries'. |
| 10006 | 10006 | ||
| 10007 | FILTER can also be an alist with the car of each cell being | 10007 | FILTER can also be an alist with the car of each cell being |
| 10008 | either 'headline or 'category. For example: | 10008 | either `headline' or `category'. For example: |
| 10009 | 10009 | ||
| 10010 | '((headline \"IMPORTANT\") | 10010 | ((headline \"IMPORTANT\") |
| 10011 | (category \"Work\")) | 10011 | (category \"Work\")) |
| 10012 | 10012 | ||
| 10013 | will only add headlines containing IMPORTANT or headlines | 10013 | will only add headlines containing IMPORTANT or headlines |
| 10014 | belonging to the \"Work\" category. | 10014 | belonging to the \"Work\" category. |
diff --git a/lisp/org/org-protocol.el b/lisp/org/org-protocol.el index 4d9e79f54ea..ae0f4946832 100644 --- a/lisp/org/org-protocol.el +++ b/lisp/org/org-protocol.el | |||
| @@ -197,7 +197,7 @@ Possible properties are: | |||
| 197 | Example: | 197 | Example: |
| 198 | 198 | ||
| 199 | (setq org-protocol-project-alist | 199 | (setq org-protocol-project-alist |
| 200 | '((\"http://orgmode.org/worg/\" | 200 | \\='((\"http://orgmode.org/worg/\" |
| 201 | :online-suffix \".php\" | 201 | :online-suffix \".php\" |
| 202 | :working-suffix \".org\" | 202 | :working-suffix \".org\" |
| 203 | :base-url \"http://orgmode.org/worg/\" | 203 | :base-url \"http://orgmode.org/worg/\" |
| @@ -251,7 +251,7 @@ kill-client - If t, kill the client immediately, once the sub-protocol is | |||
| 251 | Here is an example: | 251 | Here is an example: |
| 252 | 252 | ||
| 253 | (setq org-protocol-protocol-alist | 253 | (setq org-protocol-protocol-alist |
| 254 | '((\"my-protocol\" | 254 | \\='((\"my-protocol\" |
| 255 | :protocol \"my-protocol\" | 255 | :protocol \"my-protocol\" |
| 256 | :function my-protocol-handler-function) | 256 | :function my-protocol-handler-function) |
| 257 | (\"your-protocol\" | 257 | (\"your-protocol\" |
diff --git a/lisp/org/ox-html.el b/lisp/org/ox-html.el index 144b58b9bc8..fc4f574a4c4 100644 --- a/lisp/org/ox-html.el +++ b/lisp/org/ox-html.el | |||
| @@ -833,7 +833,7 @@ you can reuse them: | |||
| 833 | For example: | 833 | For example: |
| 834 | 834 | ||
| 835 | \(setq org-html-table-row-tags | 835 | \(setq org-html-table-row-tags |
| 836 | (cons '(cond (top-row-p \"<tr class=\\\"tr-top\\\">\") | 836 | (cons \\='(cond (top-row-p \"<tr class=\\\"tr-top\\\">\") |
| 837 | (bottom-row-p \"<tr class=\\\"tr-bottom\\\">\") | 837 | (bottom-row-p \"<tr class=\\\"tr-bottom\\\">\") |
| 838 | (t (if (= (mod row-number 2) 1) | 838 | (t (if (= (mod row-number 2) 1) |
| 839 | \"<tr class=\\\"tr-odd\\\">\" | 839 | \"<tr class=\\\"tr-odd\\\">\" |