|
@@ -680,7 +680,7 @@ core modules, nor modules from the CONTRIB directory). Just add symbols
|
|
|
to the end of the list. If the package is called org-xyz.el, then you need
|
|
|
to add the symbol `xyz', and the package must have a call to:
|
|
|
|
|
|
- \(provide 'org-xyz)
|
|
|
+ \(provide \\='org-xyz)
|
|
|
|
|
|
For export specific modules, see also `org-export-backends'."
|
|
|
:group 'org
|
|
@@ -770,20 +770,20 @@ value of the variable, after updating it:
|
|
|
\(lambda (backend)
|
|
|
\(let ((name (org-export-backend-name backend)))
|
|
|
\(or (memq name val)
|
|
|
- \(catch 'parentp
|
|
|
+ \(catch \\='parentp
|
|
|
\(dolist (b val)
|
|
|
\(and (org-export-derived-backend-p b name)
|
|
|
- \(throw 'parentp t)))))))
|
|
|
+ \(throw \\='parentp t)))))))
|
|
|
org-export-registered-backends))
|
|
|
- \(let ((new-list (mapcar #'org-export-backend-name
|
|
|
+ \(let ((new-list (mapcar #\\='org-export-backend-name
|
|
|
org-export-registered-backends)))
|
|
|
\(dolist (backend val)
|
|
|
\(cond
|
|
|
\((not (load (format \"ox-%s\" backend) t t))
|
|
|
- \(message \"Problems while trying to load export back-end `%s'\"
|
|
|
+ \(message \"Problems while trying to load export back-end \\=`%s\\='\"
|
|
|
backend))
|
|
|
\((not (memq backend new-list)) (push backend new-list))))
|
|
|
- \(set-default 'org-export-backends new-list)))
|
|
|
+ \(set-default \\='org-export-backends new-list)))
|
|
|
|
|
|
Adding a back-end to this list will also pull the back-end it
|
|
|
depends on, if any."
|
|
@@ -1780,8 +1780,8 @@ links in Org-mode buffers can have an optional tag after a double colon, e.g.
|
|
|
|
|
|
[[linkkey:tag][description]]
|
|
|
|
|
|
-The 'linkkey' must be a word word, starting with a letter, followed
|
|
|
-by letters, numbers, '-' or '_'.
|
|
|
+The `linkkey' must be a word word, starting with a letter, followed
|
|
|
+by letters, numbers, `-' or `_'.
|
|
|
|
|
|
If REPLACE is a string, the tag will simply be appended to create the link.
|
|
|
If the string contains \"%s\", the tag will be inserted there. If the string
|
|
@@ -2210,7 +2210,7 @@ file identifier are
|
|
|
filename matches the regexp. If you want to
|
|
|
use groups here, use shy groups.
|
|
|
|
|
|
- Example: (\"\\.x?html\\'\" . \"firefox %s\")
|
|
|
+ Example: (\"\\.x?html\\\\='\" . \"firefox %s\")
|
|
|
(\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
|
|
|
to open *.html and *.xhtml with firefox.
|
|
|
|
|
@@ -2226,7 +2226,7 @@ file identifier are
|
|
|
In a custom lisp form, you can access the group matches with
|
|
|
(match-string n link).
|
|
|
|
|
|
- Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
|
|
|
+ Example: (\"\\.pdf::\\(\\d+\\)\\\\='\" . \"evince -p %1 %s\")
|
|
|
to open [[file:document.pdf::5]] with evince at page 5.
|
|
|
|
|
|
`directory' Matches a directory
|
|
@@ -2723,7 +2723,7 @@ TODO state changes
|
|
|
------------------
|
|
|
:type todo-state-change
|
|
|
:from previous state (keyword as a string), or nil, or a symbol
|
|
|
- 'todo' or 'done', to indicate the general type of state.
|
|
|
+ `todo' or `done', to indicate the general type of state.
|
|
|
:to new state, like in :from")
|
|
|
|
|
|
(defcustom org-enforce-todo-dependencies nil
|
|
@@ -3531,10 +3531,10 @@ Instead of customizing this variable directly, you might want to
|
|
|
set it locally for capture buffers, because there no list of
|
|
|
tags in that file can be created dynamically (there are none).
|
|
|
|
|
|
- (add-hook 'org-capture-mode-hook
|
|
|
+ (add-hook \\='org-capture-mode-hook
|
|
|
(lambda ()
|
|
|
(set (make-local-variable
|
|
|
- 'org-complete-tags-always-offer-all-agenda-tags)
|
|
|
+ \\='org-complete-tags-always-offer-all-agenda-tags)
|
|
|
t)))"
|
|
|
:group 'org-tags
|
|
|
:version "24.1"
|
|
@@ -4214,7 +4214,7 @@ lines to the buffer:
|
|
|
|
|
|
(defcustom org-hidden-keywords nil
|
|
|
"List of symbols corresponding to keywords to be hidden the org buffer.
|
|
|
-For example, a value '(title) for this list will make the document's title
|
|
|
+For example, a value \\='(title) for this list will make the document's title
|
|
|
appear in the buffer without the initial #+TITLE: keyword."
|
|
|
:group 'org-appearance
|
|
|
:version "24.1"
|
|
@@ -6756,7 +6756,7 @@ show the entire buffer, including any drawers.
|
|
|
;; Table: enter it or move to the next field.
|
|
|
((org-at-table-p 'any)
|
|
|
(if (org-at-table.el-p)
|
|
|
- (message (substitute-command-keys "\\<org-mode-map>\
|
|
|
+ (message "%s" (substitute-command-keys "\\<org-mode-map>\
|
|
|
Use \\[org-edit-special] to edit table.el tables"))
|
|
|
(if arg (org-table-edit-field t)
|
|
|
(org-table-justify-field-maybe)
|
|
@@ -11473,7 +11473,7 @@ org-open-file.
|
|
|
It assumes that is the case when the entry uses a regular
|
|
|
expression which has at least one grouping construct and the
|
|
|
action is either a lisp form or a command string containing
|
|
|
-'%1', i.e. using at least one subexpression match as a
|
|
|
+`%1', i.e. using at least one subexpression match as a
|
|
|
parameter."
|
|
|
(let ((selector (car entry))
|
|
|
(action (cdr entry)))
|
|
@@ -12508,11 +12508,11 @@ With a numeric prefix arg of 0, inhibit note taking for the change.
|
|
|
With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
|
|
|
|
|
|
When called through ELisp, arg is also interpreted in the following way:
|
|
|
-'none -> empty state
|
|
|
+`none' -> empty state
|
|
|
\"\"(empty string) -> switch to empty state
|
|
|
-'done -> switch to DONE
|
|
|
-'nextset -> switch to the next set of keywords
|
|
|
-'previousset -> switch to the previous set of keywords
|
|
|
+`done' -> switch to DONE
|
|
|
+`nextset' -> switch to the next set of keywords
|
|
|
+`previousset' -> switch to the previous set of keywords
|
|
|
\"WAITING\" -> switch to the specified keyword, but only if it
|
|
|
really is a member of `org-todo-keywords'."
|
|
|
(interactive "P")
|
|
@@ -17644,7 +17644,7 @@ days in order to avoid rounding problems."
|
|
|
(error (error "Bad timestamp `%s'%s\nError was: %s"
|
|
|
s (if (not (and buffer pos))
|
|
|
""
|
|
|
- (format " at %d in buffer `%s'" pos buffer))
|
|
|
+ (format-message " at %d in buffer `%s'" pos buffer))
|
|
|
(cdr errdata)))))
|
|
|
|
|
|
(defun org-time-string-to-seconds (s)
|
|
@@ -17673,7 +17673,7 @@ The variable `date' is bound by the calendar when this is called."
|
|
|
(error (error "Bad timestamp `%s'%s\nError was: %s"
|
|
|
s (if (not (and buffer pos))
|
|
|
""
|
|
|
- (format " at %d in buffer `%s'" pos buffer))
|
|
|
+ (format-message " at %d in buffer `%s'" pos buffer))
|
|
|
(cdr errdata))))))))
|
|
|
|
|
|
(defun org-days-to-iso-week (days)
|
|
@@ -21219,7 +21219,7 @@ This command does many different things, depending on context:
|
|
|
;; a `table.el' type, just give up. At a table row or
|
|
|
;; cell, maybe recalculate line but always align table.
|
|
|
(if (eq (org-element-property :type context) 'table.el)
|
|
|
- (message (substitute-command-keys "\\<org-mode-map>\
|
|
|
+ (message "%s" (substitute-command-keys "\\<org-mode-map>\
|
|
|
Use \\[org-edit-special] to edit table.el tables"))
|
|
|
(let ((org-enable-table-editor t))
|
|
|
(if (or (eq type 'table)
|
|
@@ -22651,8 +22651,8 @@ for the search purpose."
|
|
|
|
|
|
For example, in this alist:
|
|
|
|
|
|
-\(org-uniquify-alist '((a 1) (b 2) (a 3)))
|
|
|
- => '((a 1 3) (b 2))
|
|
|
+\(org-uniquify-alist \\='((a 1) (b 2) (a 3)))
|
|
|
+ => \\='((a 1 3) (b 2))
|
|
|
|
|
|
merge (a 1) and (a 3) into (a 1 3).
|
|
|
|