summaryrefslogtreecommitdiff
path: root/lisp/org
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2022-11-21 15:16:08 +0100
committerStefan Kangas <stefankangas@gmail.com>2022-11-21 15:20:11 +0100
commitbeaa2e49530b8149d2c22cb5fa15b8d48f7937b6 (patch)
treee92668cbdb35696e07375374f5738efc99d466fc /lisp/org
parent61e96789ddb1fe81520c3b1cc6c7ff43da5bc26f (diff)
downloademacs-beaa2e49530b8149d2c22cb5fa15b8d48f7937b6.tar.gz
emacs-beaa2e49530b8149d2c22cb5fa15b8d48f7937b6.tar.bz2
emacs-beaa2e49530b8149d2c22cb5fa15b8d48f7937b6.zip
; Fix typos (misspelled symbols)
Diffstat (limited to 'lisp/org')
-rw-r--r--lisp/org/ob-R.el2
-rw-r--r--lisp/org/org-clock.el3
-rw-r--r--lisp/org/org-element.el2
-rw-r--r--lisp/org/org-id.el2
-rw-r--r--lisp/org/org-protocol.el2
-rw-r--r--lisp/org/ox-koma-letter.el4
-rw-r--r--lisp/org/ox-odt.el6
-rw-r--r--lisp/org/ox.el2
8 files changed, 10 insertions, 13 deletions
diff --git a/lisp/org/ob-R.el b/lisp/org/ob-R.el
index cd822ef8374..93d1d34229b 100644
--- a/lisp/org/ob-R.el
+++ b/lisp/org/ob-R.el
@@ -545,7 +545,7 @@ by `org-babel-comint-async-filter'."
(defun ob-session-async-R-value-callback (params tmp-file)
"Callback for async value results.
-Assigned locally to `ob-session-async-file-callback' in R
+Assigned locally to `org-babel-comint-async-file-callback' in R
comint buffers used for asynchronous Babel evaluation."
(let* ((graphics-file (and (member "graphics" (assq :result-params params))
(org-babel-graphical-output-file params)))
diff --git a/lisp/org/org-clock.el b/lisp/org/org-clock.el
index 38e0826075b..42de0a0cf97 100644
--- a/lisp/org/org-clock.el
+++ b/lisp/org/org-clock.el
@@ -428,8 +428,7 @@ When `org-clock-clocked-in-display' is set to `frame-title'
or `both', clocking in will replace `frame-title-format' with
this value. Clocking out will restore `frame-title-format'.
-`org-frame-title-string' is a format string using the same
-specifications than `frame-title-format', which see."
+This uses the same format as `frame-title-format', which see."
:version "24.1"
:group 'org-clock
:type 'sexp)
diff --git a/lisp/org/org-element.el b/lisp/org/org-element.el
index 4c018062af3..474a93577a9 100644
--- a/lisp/org/org-element.el
+++ b/lisp/org/org-element.el
@@ -139,7 +139,7 @@ is not sufficient to know if point is at a paragraph ending. See
(defvar org-element--object-regexp nil
"Regexp possibly matching the beginning of an object.
This regexp allows false positives. Dedicated parser (e.g.,
-`org-export-bold-parser') will take care of further filtering.
+`org-element-bold-parser') will take care of further filtering.
Radio links are not matched by this regexp, as they are treated
specially in `org-element--object-lex'.")
diff --git a/lisp/org/org-id.el b/lisp/org/org-id.el
index 7334050b8b4..2fb299d5e89 100644
--- a/lisp/org/org-id.el
+++ b/lisp/org/org-id.el
@@ -591,7 +591,7 @@ If SILENT is non-nil, messages are suppressed."
(setf (car item) (expand-file-name (car item) loc))))
org-id-locations)))
(error
- (message "Could not read `org-id-values' from %s, setting it to nil"
+ (message "Could not read `org-id-locations' from %s, setting it to nil"
org-id-locations-file))))
(setq org-id-files (mapcar 'car org-id-locations))
(setq org-id-locations (org-id-alist-to-hash org-id-locations))))
diff --git a/lisp/org/org-protocol.el b/lisp/org/org-protocol.el
index 137a11f3d91..cd99f30e7bd 100644
--- a/lisp/org/org-protocol.el
+++ b/lisp/org/org-protocol.el
@@ -687,7 +687,7 @@ to deal with new-style links.")
fname)))
(defadvice server-visit-files (before org-protocol-detect-protocol-server activate)
- "Advice server-visit-flist to call `org-protocol-modify-filename-for-protocol'."
+ "Advice server-visit-flist to call `org-protocol-check-filename-for-protocol'."
(let ((flist (if org-protocol-reverse-list-of-files
(reverse (ad-get-arg 0))
(ad-get-arg 0)))
diff --git a/lisp/org/ox-koma-letter.el b/lisp/org/ox-koma-letter.el
index 5f62cd1c040..6b5edd20f5a 100644
--- a/lisp/org/ox-koma-letter.el
+++ b/lisp/org/ox-koma-letter.el
@@ -35,7 +35,7 @@
;; `org-koma-letter-export-to-pdf' ("pdf" file).
;;
;; On top of buffer keywords supported by `latex' back-end (see
-;; `org-latex-options-alist'), this back-end introduces the following
+;; `org-latex-packages-alist'), this back-end introduces the following
;; keywords:
;; - CLOSING: see `org-koma-letter-closing',
;; - FROM_ADDRESS: see `org-koma-letter-from-address',
@@ -66,7 +66,7 @@
;; - from-logo (see `org-koma-letter-use-from-logo')
;; - email (see `org-koma-letter-use-email')
;; - place (see `org-koma-letter-use-place')
-;; - location (see `org-koma-letter-use-location')
+;; - location (see `org-koma-letter-location')
;; - subject, a list of format options
;; (see `org-koma-letter-subject-format')
;; - after-closing-order, a list of the ordering of headings with
diff --git a/lisp/org/ox-odt.el b/lisp/org/ox-odt.el
index 7f2e8ba47f8..8c8c80136ae 100644
--- a/lisp/org/ox-odt.el
+++ b/lisp/org/ox-odt.el
@@ -3227,8 +3227,7 @@ Return a cons of (TABLE-CELL-STYLE-NAME . PARAGRAPH-STYLE-NAME).
When STYLE-SPEC is nil, style the table cell the conventional way
- choose cell borders based on row and column groupings and
choose paragraph alignment based on `org-col-cookies' text
-property. See also
-`org-odt-get-paragraph-style-cookie-for-table-cell'.
+property. See also `org-odt-table-style-spec'.
When STYLE-SPEC is non-nil, ignore the above cookie and return
styles congruent with the ODF-1.2 specification."
@@ -3573,8 +3572,7 @@ pertaining to indentation here."
;; item, but also within description lists and low-level
;; headlines.
- ;; See `org-odt-translate-description-lists' and
- ;; `org-odt-translate-low-level-headlines' for how this is
+ ;; See `org-odt--translate-description-lists' for how this is
;; tackled.
(concat "\n"
diff --git a/lisp/org/ox.el b/lisp/org/ox.el
index 56bb4b74df3..ca6b3f22080 100644
--- a/lisp/org/ox.el
+++ b/lisp/org/ox.el
@@ -6291,7 +6291,7 @@ to `:default' encoding. If it fails, return S."
;;
;; Export Stack is viewed through a dedicated major mode
;;`org-export-stack-mode' and tools: `org-export-stack-refresh',
-;;`org-export-stack-delete', `org-export-stack-view' and
+;;`org-export-stack-remove', `org-export-stack-view' and
;;`org-export-stack-clear'.
;;
;; For back-ends, `org-export-add-to-stack' add a new source to stack.