summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2015-09-21 00:23:58 -0400
committerKyle Meyer <kyle@kyleam.com>2015-09-21 18:38:39 -0400
commit077810e5216790b737cd1bb1e313f4242e5f29d9 (patch)
tree1eedb69054a88453cfaeebe14af1e10be5e2b140
parentd77a52a502ee45cd71aa19c87700a85e5c09b25f (diff)
downloadorg-mode-077810e5216790b737cd1bb1e313f4242e5f29d9.tar.gz
Modify quote-related backport
These changes are in line with the changes proposed on the mailing list, but many of those changes weren't necessary because they had already been reverted in the Emacs repo. <http://permalink.gmane.org/gmane.emacs.orgmode/100896/>
-rw-r--r--lisp/org-agenda.el10
-rw-r--r--lisp/org-capture.el4
-rw-r--r--lisp/org-clock.el2
-rw-r--r--lisp/ox-publish.el2
-rw-r--r--lisp/ox.el10
5 files changed, 14 insertions, 14 deletions
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 79e0f55..3def19e 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -1211,7 +1211,7 @@ For example, 9:30am would become 09:30 rather than 9:30."
:type 'boolean)
(defun org-agenda-time-of-day-to-ampm (time)
- "Convert TIME of a string like `13:45' to an AM/PM style time string."
+ "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
(let* ((hour-number (string-to-number (substring time 0 -3)))
(minute (substring time -2))
(ampm "am"))
@@ -1993,8 +1993,8 @@ the lower-case version of all tags."
"Alist of characters and custom functions for bulk actions.
For example, this value makes those two functions available:
- ((?R set-category)
- (?C bulk-cut))
+ \\='((?R set-category)
+ (?C bulk-cut))
With selected entries in an agenda buffer, `B R' will call
the custom function `set-category' on the selected entries.
@@ -10114,8 +10114,8 @@ argument: an entry from `org-agenda-get-day-entries'.
FILTER can also be an alist with the car of each cell being
either `headline' or `category'. For example:
- ((headline \"IMPORTANT\")
- (category \"Work\"))
+ \\='((headline \"IMPORTANT\")
+ (category \"Work\"))
will only add headlines containing IMPORTANT or headlines
belonging to the \"Work\" category.
diff --git a/lisp/org-capture.el b/lisp/org-capture.el
index d704cfd..67dc319 100644
--- a/lisp/org-capture.el
+++ b/lisp/org-capture.el
@@ -462,7 +462,7 @@ For example, if you have a capture template \"c\" and you want
this template to be accessible only from `message-mode' buffers,
use this:
- ((\"c\" ((in-mode . \"message-mode\"))))
+ \\='((\"c\" ((in-mode . \"message-mode\"))))
Here are the available contexts definitions:
@@ -480,7 +480,7 @@ accessible if there is at least one valid check.
You can also bind a key to another agenda custom command
depending on contextual rules.
- ((\"c\" \"d\" ((in-mode . \"message-mode\"))))
+ \\='((\"c\" \"d\" ((in-mode . \"message-mode\"))))
Here it means: in `message-mode buffers', use \"c\" as the
key for the capture template otherwise associated with \"d\".
diff --git a/lisp/org-clock.el b/lisp/org-clock.el
index f7c357b..e0d573f 100644
--- a/lisp/org-clock.el
+++ b/lisp/org-clock.el
@@ -1005,7 +1005,7 @@ k/K Keep X minutes of the idle time (default is all). If this
that many minutes after the time that idling began, and then
clocked back in at the present time.
-g/G Indicate that you “got back” X minutes ago. This is quite
+g/G Indicate that you \"got back\" X minutes ago. This is quite
different from `k': it clocks you out from the beginning of
the idle period and clock you back in X minutes ago.
diff --git a/lisp/ox-publish.el b/lisp/ox-publish.el
index 1367b1e..ed35386 100644
--- a/lisp/ox-publish.el
+++ b/lisp/ox-publish.el
@@ -67,7 +67,7 @@ produced.")
(defcustom org-publish-project-alist nil
"Association list to control publishing behavior.
-Each element of the alist is a publishing “project”. The CAR of
+Each element of the alist is a publishing project. The CAR of
each element is a string, uniquely identifying the project. The
CDR of each element is in one of the following forms:
diff --git a/lisp/ox.el b/lisp/ox.el
index 7b43c28..26ee6e7 100644
--- a/lisp/ox.el
+++ b/lisp/ox.el
@@ -1094,7 +1094,7 @@ keywords are understood:
Menu entry for the export dispatcher. It should be a list
like:
- (KEY DESCRIPTION-OR-ORDINAL ACTION-OR-MENU)
+ \\='(KEY DESCRIPTION-OR-ORDINAL ACTION-OR-MENU)
where :
@@ -1118,17 +1118,17 @@ keywords are understood:
If it is an alist, associations should follow the
pattern:
- (KEY DESCRIPTION ACTION)
+ \\='(KEY DESCRIPTION ACTION)
where KEY, DESCRIPTION and ACTION are described above.
Valid values include:
- (?m \"My Special Back-end\" my-special-export-function)
+ \\='(?m \"My Special Back-end\" my-special-export-function)
or
- (?l \"Export to LaTeX\"
+ \\='(?l \"Export to LaTeX\"
\(?p \"As PDF file\" org-latex-export-to-pdf)
\(?o \"As PDF file and open\"
\(lambda (a s v b)
@@ -1139,7 +1139,7 @@ keywords are understood:
or the following, which will be added to the previous
sub-menu,
- (?l 1
+ \\='(?l 1
\((?B \"As TEX buffer (Beamer)\" org-beamer-export-as-latex)
\(?P \"As PDF file (Beamer)\" org-beamer-export-to-pdf)))