aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org
diff options
context:
space:
mode:
authorGlenn Morris2018-02-17 07:50:28 -0800
committerGlenn Morris2018-02-17 07:50:28 -0800
commit4fa90ff8f5fda54fc42049c990c52d3e5236fbe6 (patch)
tree6c0a7893b3aab0166b35938338fa289c3a01df74 /lisp/org
parentcb3863370cbe574810f796726faa39ba0de0a429 (diff)
parente5a29330aae4491fd384bacaff6f453c6434d322 (diff)
downloademacs-4fa90ff8f5fda54fc42049c990c52d3e5236fbe6.tar.gz
emacs-4fa90ff8f5fda54fc42049c990c52d3e5236fbe6.zip
Merge from origin/emacs-26
e5a2933 (origin/emacs-26) lisp/vc/: documentation fixes f21f8e6 Document 'desktop-files-not-to-save' d8917eb Improve documentation of Profiling features b228839 Improve indexing of "performance" in ELisp manual ab67b3e Minor change in Emacs manual's VC chapter c352434 Avoid memory corruption with specpdl overflow + edebug (Bug#3... 593bbda Document comment-fill-column in the manual (Bug#11636) bd4cc8d * doc/emacs/dired.texi (Marks vs Flags): Copyedits. 69107f3 ; Fix doc typos related to indefinite articles aaad1e6 Merge branch 'emacs-26' of git.savannah.gnu.org:/srv/git/emac... 5906418 More fixes for the Emacs manual 9ab3df1 ; Fix doc typos related to indefinite articles 66a4e65 ; Fix doc typos related to indefinite articles 35e5c57 ; Fix doc typos related to indefinite articles
Diffstat (limited to 'lisp/org')
-rw-r--r--lisp/org/ob-calc.el2
-rw-r--r--lisp/org/ob-core.el6
-rw-r--r--lisp/org/ob-org.el2
-rw-r--r--lisp/org/ob-picolisp.el2
-rw-r--r--lisp/org/org-clock.el2
-rw-r--r--lisp/org/org-eww.el6
-rw-r--r--lisp/org/org-protocol.el2
-rw-r--r--lisp/org/ox-html.el2
-rw-r--r--lisp/org/ox-latex.el2
-rw-r--r--lisp/org/ox-odt.el5
-rw-r--r--lisp/org/ox-texinfo.el2
11 files changed, 16 insertions, 17 deletions
diff --git a/lisp/org/ob-calc.el b/lisp/org/ob-calc.el
index f491a6cdef9..4ed5dd4be05 100644
--- a/lisp/org/ob-calc.el
+++ b/lisp/org/ob-calc.el
@@ -37,7 +37,7 @@
37(declare-function org-trim "org" (s &optional keep-lead)) 37(declare-function org-trim "org" (s &optional keep-lead))
38 38
39(defvar org-babel-default-header-args:calc nil 39(defvar org-babel-default-header-args:calc nil
40 "Default arguments for evaluating an calc source block.") 40 "Default arguments for evaluating a calc source block.")
41 41
42(defun org-babel-expand-body:calc (body _params) 42(defun org-babel-expand-body:calc (body _params)
43 "Expand BODY according to PARAMS, return the expanded body." body) 43 "Expand BODY according to PARAMS, return the expanded body." body)
diff --git a/lisp/org/ob-core.el b/lisp/org/ob-core.el
index 5f378b2173f..0e2e78a6710 100644
--- a/lisp/org/ob-core.el
+++ b/lisp/org/ob-core.el
@@ -363,7 +363,7 @@ a window into the `org-babel-get-src-block-info' function."
363;;;###autoload 363;;;###autoload
364(defun org-babel-expand-src-block-maybe () 364(defun org-babel-expand-src-block-maybe ()
365 "Conditionally expand a source block. 365 "Conditionally expand a source block.
366Detect if this is context for a org-babel src-block and if so 366Detect if this is context for an org-babel src-block and if so
367then run `org-babel-expand-src-block'." 367then run `org-babel-expand-src-block'."
368 (interactive) 368 (interactive)
369 (org-babel-when-in-src-block 369 (org-babel-when-in-src-block
@@ -372,7 +372,7 @@ then run `org-babel-expand-src-block'."
372;;;###autoload 372;;;###autoload
373(defun org-babel-load-in-session-maybe () 373(defun org-babel-load-in-session-maybe ()
374 "Conditionally load a source block in a session. 374 "Conditionally load a source block in a session.
375Detect if this is context for a org-babel src-block and if so 375Detect if this is context for an org-babel src-block and if so
376then run `org-babel-load-in-session'." 376then run `org-babel-load-in-session'."
377 (interactive) 377 (interactive)
378 (org-babel-when-in-src-block 378 (org-babel-when-in-src-block
@@ -383,7 +383,7 @@ then run `org-babel-load-in-session'."
383;;;###autoload 383;;;###autoload
384(defun org-babel-pop-to-session-maybe () 384(defun org-babel-pop-to-session-maybe ()
385 "Conditionally pop to a session. 385 "Conditionally pop to a session.
386Detect if this is context for a org-babel src-block and if so 386Detect if this is context for an org-babel src-block and if so
387then run `org-babel-switch-to-session'." 387then run `org-babel-switch-to-session'."
388 (interactive) 388 (interactive)
389 (org-babel-when-in-src-block 389 (org-babel-when-in-src-block
diff --git a/lisp/org/ob-org.el b/lisp/org/ob-org.el
index e52283848e4..310aaec3f39 100644
--- a/lisp/org/ob-org.el
+++ b/lisp/org/ob-org.el
@@ -34,7 +34,7 @@
34 34
35(defvar org-babel-default-header-args:org 35(defvar org-babel-default-header-args:org
36 '((:results . "raw silent") (:exports . "code")) 36 '((:results . "raw silent") (:exports . "code"))
37 "Default arguments for evaluating a org source block.") 37 "Default arguments for evaluating an org source block.")
38 38
39(defvar org-babel-org-default-header 39(defvar org-babel-org-default-header
40 "#+TITLE: default empty header\n" 40 "#+TITLE: default empty header\n"
diff --git a/lisp/org/ob-picolisp.el b/lisp/org/ob-picolisp.el
index b6dc8986f95..fd129b899b2 100644
--- a/lisp/org/ob-picolisp.el
+++ b/lisp/org/ob-picolisp.el
@@ -35,7 +35,7 @@
35;; (http://picolisp.com/5000/-2.html). PicoLisp is included in some 35;; (http://picolisp.com/5000/-2.html). PicoLisp is included in some
36;; GNU/Linux Distributions, and can be downloaded here: 36;; GNU/Linux Distributions, and can be downloaded here:
37;; http://software-lab.de/down.html. It ships with a picolisp-mode and 37;; http://software-lab.de/down.html. It ships with a picolisp-mode and
38;; a inferior-picolisp-mode for Emacs (to be found in the /lib/el/ 38;; an inferior-picolisp-mode for Emacs (to be found in the /lib/el/
39;; directory). 39;; directory).
40 40
41;; Although it might seem more natural to use Emacs Lisp for most 41;; Although it might seem more natural to use Emacs Lisp for most
diff --git a/lisp/org/org-clock.el b/lisp/org/org-clock.el
index 9bc1f0c06d7..4c5fcc64b0f 100644
--- a/lisp/org/org-clock.el
+++ b/lisp/org/org-clock.el
@@ -1394,7 +1394,7 @@ the default behavior."
1394;;;###autoload 1394;;;###autoload
1395(defun org-clock-in-last (&optional arg) 1395(defun org-clock-in-last (&optional arg)
1396 "Clock in the last closed clocked item. 1396 "Clock in the last closed clocked item.
1397When already clocking in, send an warning. 1397When already clocking in, send a warning.
1398With a universal prefix argument, select the task you want to 1398With a universal prefix argument, select the task you want to
1399clock in from the last clocked in tasks. 1399clock in from the last clocked in tasks.
1400With two universal prefix arguments, start clocking using the 1400With two universal prefix arguments, start clocking using the
diff --git a/lisp/org/org-eww.el b/lisp/org/org-eww.el
index 0792c87a6a4..3d9dddcac03 100644
--- a/lisp/org/org-eww.el
+++ b/lisp/org/org-eww.el
@@ -25,9 +25,9 @@
25;;; Commentary: 25;;; Commentary:
26 26
27;; When this module is active `org-store-link' (often on key C-c l) in 27;; When this module is active `org-store-link' (often on key C-c l) in
28;; a eww buffer stores a link to the current url of the eww buffer. 28;; an EWW buffer stores a link to the current url of the eww buffer.
29 29
30;; In an eww buffer function `org-eww-copy-for-org-mode' kills either 30;; In an EWW buffer function `org-eww-copy-for-org-mode' kills either
31;; a region or the whole buffer if no region is set and transforms the 31;; a region or the whole buffer if no region is set and transforms the
32;; text on the fly so that it can be pasted into an Org buffer with 32;; text on the fly so that it can be pasted into an Org buffer with
33;; hot links. 33;; hot links.
@@ -58,7 +58,7 @@
58;; Store Org-link in eww-mode buffer 58;; Store Org-link in eww-mode buffer
59(org-link-set-parameters "eww" :follow #'eww :store #'org-eww-store-link) 59(org-link-set-parameters "eww" :follow #'eww :store #'org-eww-store-link)
60(defun org-eww-store-link () 60(defun org-eww-store-link ()
61 "Store a link to the url of a Eww buffer." 61 "Store a link to the url of an EWW buffer."
62 (when (eq major-mode 'eww-mode) 62 (when (eq major-mode 'eww-mode)
63 (org-store-link-props 63 (org-store-link-props
64 :type "eww" 64 :type "eww"
diff --git a/lisp/org/org-protocol.el b/lisp/org/org-protocol.el
index 3cbbc78dce5..27c2bb28d0f 100644
--- a/lisp/org/org-protocol.el
+++ b/lisp/org/org-protocol.el
@@ -663,7 +663,7 @@ to deal with new-style links.")
663;;; Org specific functions: 663;;; Org specific functions:
664 664
665(defun org-protocol-create-for-org () 665(defun org-protocol-create-for-org ()
666 "Create a Org protocol project for the current file's project. 666 "Create an Org protocol project for the current file's project.
667The visited file needs to be part of a publishing project in 667The visited file needs to be part of a publishing project in
668`org-publish-project-alist' for this to work. The function 668`org-publish-project-alist' for this to work. The function
669delegates most of the work to `org-protocol-create'." 669delegates most of the work to `org-protocol-create'."
diff --git a/lisp/org/ox-html.el b/lisp/org/ox-html.el
index 06edb821e1a..83f6479bd4a 100644
--- a/lisp/org/ox-html.el
+++ b/lisp/org/ox-html.el
@@ -2697,7 +2697,7 @@ holding contextual information."
2697 2697
2698(defun org-html-format-inlinetask-default-function 2698(defun org-html-format-inlinetask-default-function
2699 (todo todo-type priority text tags contents info) 2699 (todo todo-type priority text tags contents info)
2700 "Default format function for a inlinetasks. 2700 "Default format function for inlinetasks.
2701See `org-html-format-inlinetask-function' for details." 2701See `org-html-format-inlinetask-function' for details."
2702 (format "<div class=\"inlinetask\">\n<b>%s</b>%s\n%s</div>" 2702 (format "<div class=\"inlinetask\">\n<b>%s</b>%s\n%s</div>"
2703 (org-html-format-headline-default-function 2703 (org-html-format-headline-default-function
diff --git a/lisp/org/ox-latex.el b/lisp/org/ox-latex.el
index a656e065b94..c32aa298047 100644
--- a/lisp/org/ox-latex.el
+++ b/lisp/org/ox-latex.el
@@ -2125,7 +2125,7 @@ holding contextual information."
2125 2125
2126(defun org-latex-format-inlinetask-default-function 2126(defun org-latex-format-inlinetask-default-function
2127 (todo _todo-type priority title tags contents _info) 2127 (todo _todo-type priority title tags contents _info)
2128 "Default format function for a inlinetasks. 2128 "Default format function for inlinetasks.
2129See `org-latex-format-inlinetask-function' for details." 2129See `org-latex-format-inlinetask-function' for details."
2130 (let ((full-title 2130 (let ((full-title
2131 (concat (when todo (format "\\textbf{\\textsf{\\textsc{%s}}} " todo)) 2131 (concat (when todo (format "\\textbf{\\textsf{\\textsc{%s}}} " todo))
diff --git a/lisp/org/ox-odt.el b/lisp/org/ox-odt.el
index e0c51662d10..cdee568fc81 100644
--- a/lisp/org/ox-odt.el
+++ b/lisp/org/ox-odt.el
@@ -600,8 +600,7 @@ allow document of a given class (irrespective of its source
600format) to be converted to any of the export formats associated 600format) to be converted to any of the export formats associated
601with that class. 601with that class.
602 602
603See default setting of this variable for an typical 603See default setting of this variable for a typical configuration."
604configuration."
605 :group 'org-export-odt 604 :group 'org-export-odt
606 :version "24.1" 605 :version "24.1"
607 :type 606 :type
@@ -1938,7 +1937,7 @@ holding contextual information."
1938 1937
1939(defun org-odt-format-inlinetask-default-function 1938(defun org-odt-format-inlinetask-default-function
1940 (todo todo-type priority name tags contents) 1939 (todo todo-type priority name tags contents)
1941 "Default format function for a inlinetasks. 1940 "Default format function for inlinetasks.
1942See `org-odt-format-inlinetask-function' for details." 1941See `org-odt-format-inlinetask-function' for details."
1943 (format "\n<text:p text:style-name=\"%s\">%s</text:p>" 1942 (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
1944 "Text_20_body" 1943 "Text_20_body"
diff --git a/lisp/org/ox-texinfo.el b/lisp/org/ox-texinfo.el
index fd4235a79df..d877c9c63a2 100644
--- a/lisp/org/ox-texinfo.el
+++ b/lisp/org/ox-texinfo.el
@@ -958,7 +958,7 @@ holding contextual information."
958 958
959(defun org-texinfo-format-inlinetask-default-function 959(defun org-texinfo-format-inlinetask-default-function
960 (todo _todo-type priority title tags contents) 960 (todo _todo-type priority title tags contents)
961 "Default format function for a inlinetasks. 961 "Default format function for inlinetasks.
962See `org-texinfo-format-inlinetask-function' for details." 962See `org-texinfo-format-inlinetask-function' for details."
963 (let ((full-title 963 (let ((full-title
964 (concat (when todo (format "@strong{%s} " todo)) 964 (concat (when todo (format "@strong{%s} " todo))