config

Personal configuration.
git clone git://code.dwrz.net/config
Log | Files | Refs

org-loaddefs.el (118495B)


      1 ;;; org-loaddefs.el --- automatically extracted autoloads (do not edit)   -*- lexical-binding: t -*-
      2 ;; Generated by the `loaddefs-generate' function.
      3 
      4 ;; This file is part of GNU Emacs.
      5 
      6 ;;; Code:
      7 
      8 (add-to-list 'load-path (or (and load-file-name (directory-file-name (file-name-directory load-file-name))) (car load-path)))
      9 
     10 
     11 
     12 ;;; Generated autoloads from ob-core.el
     13 
     14 (autoload 'org-babel-execute-safely-maybe "ob-core" "\
     15 Maybe `org-babel-execute-maybe'.
     16 This function does nothing unless `org-babel-no-eval-on-ctrl-c-ctrl-c'
     17 is non-nil.")
     18 (autoload 'org-babel-execute-maybe "ob-core" "\
     19 Execute src block or babel call at point." t)
     20 (autoload 'org-babel-view-src-block-info "ob-core" "\
     21 Display information on the current source block.
     22 This includes header arguments, language and name, and is largely
     23 a window into the `org-babel-get-src-block-info' function." t)
     24 (autoload 'org-babel-expand-src-block-maybe "ob-core" "\
     25 Conditionally expand a source block.
     26 Detect if this is context for an org-babel src-block and if so
     27 then run `org-babel-expand-src-block'." t)
     28 (autoload 'org-babel-load-in-session-maybe "ob-core" "\
     29 Conditionally load a source block in a session.
     30 Detect if this is context for an org-babel src-block and if so
     31 then run `org-babel-load-in-session'." t)
     32 (autoload 'org-babel-pop-to-session-maybe "ob-core" "\
     33 Conditionally pop to a session.
     34 Detect if this is context for an org-babel src-block and if so
     35 then run `org-babel-switch-to-session'." t)
     36 (autoload 'org-babel-execute-src-block "ob-core" "\
     37 Execute the current source code block and return the result.
     38 Insert the results of execution into the buffer.  Source code
     39 execution and the collection and formatting of results can be
     40 controlled through a variety of header arguments.
     41 
     42 With prefix argument ARG, force re-execution even if an existing
     43 result cached in the buffer would otherwise have been returned.
     44 
     45 Optionally supply a value for INFO in the form returned by
     46 `org-babel-get-src-block-info'.
     47 
     48 Optionally supply a value for PARAMS which will be merged with
     49 the header arguments specified at the front of the source code
     50 block.
     51 
     52 EXECUTOR-TYPE is the type of the org element responsible for the
     53 execution of the source block.  If not provided then informed
     54 guess will be made.
     55 
     56 (fn &optional ARG INFO PARAMS EXECUTOR-TYPE)" t)
     57 (autoload 'org-babel-expand-src-block "ob-core" "\
     58 Expand the current source code block or block specified by INFO.
     59 INFO is the output of `org-babel-get-src-block-info'.
     60 PARAMS defines inherited header arguments.
     61 
     62 Expand according to the source code block's header
     63 arguments and pop open the results in a preview buffer.
     64 
     65 (fn &optional ARG INFO PARAMS)" t)
     66 (autoload 'org-babel-check-src-block "ob-core" "\
     67 Check for misspelled header arguments in the current code block." t)
     68 (autoload 'org-babel-insert-header-arg "ob-core" "\
     69 Insert a header argument and its value.
     70 HEADER-ARG and VALUE, when provided, are the header argument name and
     71 its value.  When HEADER-ARG or VALUE are nil, offer interactive
     72 completion from lists of common args and values.
     73 
     74 (fn &optional HEADER-ARG VALUE)" t)
     75 (autoload 'org-babel-load-in-session "ob-core" "\
     76 Load the body of the current source-code block.
     77 When optional argument INFO is non-nil, use source block defined in
     78 INFO, as returned by `org-babel-get-src-block-info'.
     79 
     80 Evaluate the header arguments for the source block before
     81 entering the session.  After loading the body this pops open the
     82 session.
     83 
     84 (fn &optional ARG INFO)" t)
     85 (autoload 'org-babel-initiate-session "ob-core" "\
     86 Initiate session for current code block or the block defined by INFO.
     87 If called with a prefix argument ARG, then resolve any variable
     88 references in the header arguments and assign these variables in
     89 the session.  Copy the body of the code block to the kill ring.
     90 
     91 (fn &optional ARG INFO)" t)
     92 (autoload 'org-babel-switch-to-session "ob-core" "\
     93 Switch to the session of the current code block or block defined by INFO.
     94 Uses `org-babel-initiate-session' to start the session.  If called
     95 with a prefix argument ARG, then this is passed on to
     96 `org-babel-initiate-session'.
     97 
     98 (fn &optional ARG INFO)" t)
     99 (autoload 'org-babel-switch-to-session-with-code "ob-core" "\
    100 Switch to code buffer and display session.
    101 Prefix argument ARG is passed to `org-babel-switch-to-session'.
    102 
    103 (fn &optional ARG INFO)" t)
    104 (autoload 'org-babel-do-in-edit-buffer "ob-core" "\
    105 Evaluate BODY in edit buffer if there is a code block at point.
    106 Return t if a code block was found at point, nil otherwise.
    107 
    108 (fn &rest BODY)" nil t)
    109 (autoload 'org-babel-open-src-block-result "ob-core" "\
    110 Open results of source block at point.
    111 
    112 If `point' is on a source block then open the results of the source
    113 code block, otherwise return nil.  With optional prefix argument
    114 RE-RUN the source-code block is evaluated even if results already
    115 exist.
    116 
    117 (fn &optional RE-RUN)" t)
    118 (autoload 'org-babel-map-src-blocks "ob-core" "\
    119 Evaluate BODY forms on each source-block in FILE.
    120 If FILE is nil evaluate BODY forms on source blocks in current
    121 buffer.  During evaluation of BODY the following local variables
    122 are set relative to the currently matched code block.
    123 
    124 full-block ------- string holding the entirety of the code block
    125 beg-block -------- point at the beginning of the code block
    126 end-block -------- point at the end of the matched code block
    127 lang ------------- string holding the language of the code block
    128 beg-lang --------- point at the beginning of the lang
    129 end-lang --------- point at the end of the lang
    130 switches --------- string holding the switches
    131 beg-switches ----- point at the beginning of the switches
    132 end-switches ----- point at the end of the switches
    133 header-args ------ string holding the header-args
    134 beg-header-args -- point at the beginning of the header-args
    135 end-header-args -- point at the end of the header-args
    136 body ------------- string holding the body of the code block
    137 beg-body --------- point at the beginning of the body
    138 end-body --------- point at the end of the body
    139 
    140 (fn FILE &rest BODY)" nil t)
    141 (function-put 'org-babel-map-src-blocks 'lisp-indent-function 1)
    142 (autoload 'org-babel-map-inline-src-blocks "ob-core" "\
    143 Evaluate BODY forms on each inline source block in FILE.
    144 If FILE is nil evaluate BODY forms on source blocks in current
    145 buffer.
    146 
    147 (fn FILE &rest BODY)" nil t)
    148 (function-put 'org-babel-map-inline-src-blocks 'lisp-indent-function 1)
    149 (autoload 'org-babel-map-call-lines "ob-core" "\
    150 Evaluate BODY forms on each call line in FILE.
    151 If FILE is nil evaluate BODY forms on source blocks in current
    152 buffer.
    153 
    154 (fn FILE &rest BODY)" nil t)
    155 (function-put 'org-babel-map-call-lines 'lisp-indent-function 1)
    156 (autoload 'org-babel-map-executables "ob-core" "\
    157 Evaluate BODY forms on each active Babel code in FILE.
    158 If FILE is nil evaluate BODY forms on source blocks in current
    159 buffer.
    160 
    161 (fn FILE &rest BODY)" nil t)
    162 (function-put 'org-babel-map-executables 'lisp-indent-function 1)
    163 (autoload 'org-babel-execute-buffer "ob-core" "\
    164 Execute source code blocks in a buffer.
    165 Prefix argument ARG is passed to `org-babel-execute-src-block'.
    166 Call `org-babel-execute-src-block' on every source block in
    167 the current buffer.
    168 
    169 (fn &optional ARG)" t)
    170 (autoload 'org-babel-execute-subtree "ob-core" "\
    171 Execute source code blocks in a subtree.
    172 Call `org-babel-execute-src-block' on every source block in
    173 the current subtree, passing over the prefix argument ARG.
    174 
    175 (fn &optional ARG)" t)
    176 (autoload 'org-babel-sha1-hash "ob-core" "\
    177 Generate a sha1 hash based on the value of INFO.
    178 CONTEXT specifies the context of evaluation.  It can be `:eval',
    179 `:export', `:tangle'.  A nil value means `:eval'.
    180 
    181 (fn &optional INFO CONTEXT)" t)
    182 (autoload 'org-babel-hide-result-toggle-maybe "ob-core" "\
    183 Toggle visibility of result at point." t)
    184 (autoload 'org-babel-goto-src-block-head "ob-core" "\
    185 Go to the beginning of the current code block." t)
    186 (autoload 'org-babel-goto-named-src-block "ob-core" "\
    187 Go to a source-code block with NAME.
    188 
    189 (fn NAME)" t)
    190 (autoload 'org-babel-goto-named-result "ob-core" "\
    191 Go to a result with NAME.
    192 
    193 (fn NAME)" t)
    194 (autoload 'org-babel-next-src-block "ob-core" "\
    195 Jump to the next source block.
    196 With optional prefix argument ARG, jump forward ARG many source blocks.
    197 
    198 (fn &optional ARG)" t)
    199 (autoload 'org-babel-previous-src-block "ob-core" "\
    200 Jump to the previous source block.
    201 With optional prefix argument ARG, jump backward ARG many source blocks.
    202 
    203 (fn &optional ARG)" t)
    204 (autoload 'org-babel-mark-block "ob-core" "\
    205 Mark current source block." t)
    206 
    207 
    208 ;;; Generated autoloads from ob-lob.el
    209 
    210 (autoload 'org-babel-lob-execute-maybe "ob-lob" "\
    211 Execute a Library of Babel source block, if appropriate.
    212 Detect if this is context for a Library Of Babel source block and
    213 if so then run the appropriate source block from the Library." t)
    214 (autoload 'org-babel-lob-get-info "ob-lob" "\
    215 Return internal representation for Library of Babel function call.
    216 
    217 Consider DATUM, when provided, or element at point otherwise.
    218 
    219 When optional argument NO-EVAL is non-nil, Babel does not resolve
    220 remote variable references; a process which could likely result
    221 in the execution of other code blocks, and do not evaluate Lisp
    222 values in parameters.
    223 
    224 Return nil when not on an appropriate location.  Otherwise return
    225 a list compatible with `org-babel-get-src-block-info', which
    226 see.
    227 
    228 (fn &optional DATUM NO-EVAL)")
    229 
    230 
    231 ;;; Generated autoloads from ob-tangle.el
    232 
    233 (autoload 'org-babel-tangle-file "ob-tangle" "\
    234 Extract the bodies of source code blocks in FILE.
    235 Source code blocks are extracted with `org-babel-tangle'.
    236 
    237 Optional argument TARGET-FILE can be used to specify a default
    238 export file for all source blocks.
    239 
    240 Optional argument LANG-RE can be used to limit the exported
    241 source code blocks by languages matching a regular expression.
    242 
    243 Return list of the tangled file names.
    244 
    245 (fn FILE &optional TARGET-FILE LANG-RE)" t)
    246 (autoload 'org-babel-tangle "ob-tangle" "\
    247 Write code blocks to source-specific files.
    248 Extract the bodies of all source code blocks from the current
    249 file into their own source-specific files.  Return the list of files.
    250 With one universal prefix argument, only tangle the block at point.
    251 When two universal prefix arguments, only tangle blocks for the
    252 tangle file of the block at point.
    253 Optional argument TARGET-FILE can be used to specify a default
    254 export file for all source blocks.  Optional argument LANG-RE can
    255 be used to limit the exported source code blocks by languages
    256 matching a regular expression.
    257 
    258 (fn &optional ARG TARGET-FILE LANG-RE)" t)
    259 
    260 
    261 ;;; Generated autoloads from ol.el
    262 
    263 (autoload 'org-next-link "ol" "\
    264 Move forward to the next link.
    265 If the link is in hidden text, expose it.  When SEARCH-BACKWARD
    266 is non-nil, move backward.
    267 
    268 (fn &optional SEARCH-BACKWARD)" t)
    269 (autoload 'org-previous-link "ol" "\
    270 Move backward to the previous link.
    271 If the link is in hidden text, expose it." t)
    272 (autoload 'org-toggle-link-display "ol" "\
    273 Toggle the literal or descriptive display of links in current buffer." t)
    274 (autoload 'org-store-link "ol" "\
    275 Store a link to the current location.
    276 \\<org-mode-map>
    277 This link is added to `org-stored-links' and can later be inserted
    278 into an Org buffer with `org-insert-link' (`\\[org-insert-link]').
    279 When optional argument INTERACTIVE? is nil, the link is not stored in
    280 `org-stored-links', but returned as a string.
    281 
    282 For some link types, a `\\[universal-argument]' prefix ARG is interpreted.  A single
    283 `\\[universal-argument]' negates `org-link-context-for-files' for file links or
    284 `org-gnus-prefer-web-links' for links to Usenet articles.
    285 
    286 A `\\[universal-argument] \\[universal-argument]' prefix ARG forces skipping storing functions that are not
    287 part of Org core.
    288 
    289 A `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix ARG forces storing a link for each line in the
    290 active region.
    291 
    292 Assume the function is called interactively if INTERACTIVE? is
    293 non-nil.
    294 
    295 In Org buffers, an additional \"human-readable\" simple file link
    296 is stored as an alternative to persistent org-id or other links,
    297 if at a heading with a CUSTOM_ID property or an element with a
    298 NAME.
    299 
    300 (fn ARG &optional INTERACTIVE?)" t)
    301 (autoload 'org-insert-link "ol" "\
    302 Insert a link.  At the prompt, enter the link.
    303 
    304 Completion can be used to insert any of the link protocol prefixes in use.
    305 
    306 The history can be used to select a link previously stored with
    307 `org-store-link'.  When the empty string is entered (i.e. if you just
    308 press `RET' at the prompt), the link defaults to the most recently
    309 stored link.  As `SPC' triggers completion in the minibuffer, you need to
    310 use `M-SPC' or `C-q SPC' to force the insertion of a space character.
    311 Completion candidates include link descriptions.
    312 
    313 If there is a link under cursor then edit it.
    314 
    315 You will also be prompted for a description, and if one is given, it will
    316 be displayed in the buffer instead of the link.
    317 
    318 If there is already a link at point, this command will allow you to edit
    319 link and description parts.
    320 
    321 With a `\\[universal-argument]' prefix, prompts for a file to link to.  The file name can be
    322 selected using completion.  The path to the file will be relative to the
    323 current directory if the file is in the current directory or a subdirectory.
    324 Otherwise, the link will be the absolute path as completed in the minibuffer
    325 (i.e. normally ~/path/to/file).  You can configure this behavior using the
    326 option `org-link-file-path-type'.
    327 
    328 With a `\\[universal-argument] \\[universal-argument]' prefix, enforce an absolute path even if the file is in
    329 the current directory or below.
    330 
    331 A `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix negates `org-link-keep-stored-after-insertion'.
    332 
    333 If the LINK-LOCATION parameter is non-nil, this value will be used as
    334 the link location instead of reading one interactively.
    335 
    336 If the DESCRIPTION parameter is non-nil, this value will be used
    337 as the default description.  If not, and the chosen link type has
    338 a non-nil `:insert-description' parameter, that is used to
    339 generate a description as described in `org-link-parameters'
    340 docstring.  Otherwise, if `org-link-make-description-function' is
    341 non-nil, this function will be called with the link target, and
    342 the result will be the default link description.  When called
    343 non-interactively, don't allow editing the default description.
    344 
    345 (fn &optional COMPLETE-FILE LINK-LOCATION DESCRIPTION)" t)
    346 (autoload 'org-insert-all-links "ol" "\
    347 Insert all links in `org-stored-links'.
    348 When a universal prefix, do not delete the links from `org-stored-links'.
    349 When `ARG' is a number, insert the last N link(s).
    350 `PRE' and `POST' are optional arguments to define a string to
    351 prepend or to append.
    352 
    353 (fn ARG &optional PRE POST)" t)
    354 (autoload 'org-insert-last-stored-link "ol" "\
    355 Insert the last link stored in `org-stored-links'.
    356 
    357 (fn ARG)" t)
    358 (autoload 'org-insert-link-global "ol" "\
    359 Insert a link like Org mode does.
    360 This command can be called in any mode to insert a link in Org syntax." t)
    361 (autoload 'org-update-radio-target-regexp "ol" "\
    362 Find all radio targets in this file and update the regular expression.
    363 Also refresh fontification if needed." t)
    364 
    365 
    366 ;;; Generated autoloads from ol-bbdb.el
    367 
    368 (autoload 'org-bbdb-anniversaries "ol-bbdb" "\
    369 Extract anniversaries from BBDB for display in the agenda.
    370 When called programmatically, this function expects the `date'
    371 variable to be globally bound.")
    372 
    373 
    374 ;;; Generated autoloads from ol-irc.el
    375 
    376 (autoload 'org-irc-store-link "ol-irc" "\
    377 Dispatch to the appropriate function to store a link to an IRC session.
    378 
    379 (fn &optional INTERACTIVE?)")
    380 
    381 
    382 ;;; Generated autoloads from org.el
    383 
    384 (autoload 'org-dynamic-block-define "org" "\
    385 Define dynamic block TYPE with FUNC.
    386 TYPE is a string.  FUNC is the function creating the dynamic
    387 block of such type.  FUNC must be able to accept zero arguments.
    388 
    389 (fn TYPE FUNC)")
    390 
    391 
    392 ;;; Generated autoloads from org-archive.el
    393 
    394 (autoload 'org-add-archive-files "org-archive" "\
    395 Splice the archive FILES into the list of files.
    396 This implies visiting all these files and finding out what the
    397 archive file is.
    398 
    399 (fn FILES)")
    400 (autoload 'org-archive-subtree "org-archive" "\
    401 Move the current subtree to the archive.
    402 The archive can be a certain top-level heading in the current
    403 file, or in a different file.  The tree will be moved to that
    404 location, the subtree heading be marked DONE, and the current
    405 time will be added.
    406 
    407 When called with a single prefix argument FIND-DONE, find whole
    408 trees without any open TODO items and archive them (after getting
    409 confirmation from the user).  When called with a double prefix
    410 argument, find whole trees with timestamps before today and
    411 archive them (after getting confirmation from the user).  If the
    412 cursor is not at a headline when these commands are called, try
    413 all level 1 trees.  If the cursor is on a headline, only try the
    414 direct children of this heading.
    415 
    416 (fn &optional FIND-DONE)" t)
    417 (autoload 'org-archive-to-archive-sibling "org-archive" "\
    418 Archive the current heading by moving it under the archive sibling.
    419 
    420 The archive sibling is a sibling of the heading with the heading name
    421 `org-archive-sibling-heading' and an `org-archive-tag' tag.  If this
    422 sibling does not exist, it will be created at the end of the subtree.
    423 
    424 Archiving time is retained in the ARCHIVE_TIME node property." t)
    425 (autoload 'org-toggle-archive-tag "org-archive" "\
    426 Toggle the archive tag for the current headline.
    427 With prefix argument FIND-DONE, check all children of current headline
    428 and offer tagging the children that do not contain any open TODO
    429 items.
    430 
    431 (fn &optional FIND-DONE)" t)
    432 (autoload 'org-archive-subtree-default "org-archive" "\
    433 Archive the current subtree with the default command.
    434 This command is set with the variable `org-archive-default-command'." t)
    435 (autoload 'org-archive-subtree-default-with-confirmation "org-archive" "\
    436 Archive the current subtree with the default command.
    437 This command is set with the variable `org-archive-default-command'." t)
    438 
    439 
    440 ;;; Generated autoloads from org-attach.el
    441 
    442 (autoload 'org-attach "org-attach" "\
    443 The dispatcher for attachment commands.
    444 Shows a list of commands and prompts for another key to execute a command." t)
    445 (autoload 'org-attach-dir "org-attach" "\
    446 Return the directory associated with the current outline node.
    447 First check for DIR property, then ID property.
    448 `org-attach-use-inheritance' determines whether inherited
    449 properties also will be considered.
    450 
    451 If an ID property is found the default mechanism using that ID
    452 will be invoked to access the directory for the current entry.
    453 Note that this method returns the directory as declared by ID or
    454 DIR even if the directory doesn't exist in the filesystem.
    455 
    456 If CREATE-IF-NOT-EXISTS-P is non-nil, `org-attach-dir-get-create'
    457 is run.  If NO-FS-CHECK is non-nil, the function returns the path
    458 to the attachment even if it has not yet been initialized in the
    459 filesystem.
    460 
    461 If no attachment directory can be derived, return nil.
    462 
    463 (fn &optional CREATE-IF-NOT-EXISTS-P NO-FS-CHECK)")
    464 (autoload 'org-attach-dired-to-subtree "org-attach" "\
    465 Attach FILES marked or current file in `dired' to subtree in other window.
    466 Takes the method given in `org-attach-method' for the attach action.
    467 Precondition: Point must be in a `dired' buffer.
    468 Idea taken from `gnus-dired-attach'.
    469 
    470 (fn FILES)" t)
    471 
    472 
    473 ;;; Generated autoloads from org-clock.el
    474 
    475 (autoload 'org-clock-modify-effort-estimate "org-clock" "\
    476 Add to or set the effort estimate of the item currently being clocked.
    477 VALUE can be a number of minutes, or a string with format hh:mm or mm.
    478 When the string starts with a + or a - sign, the current value of the effort
    479 property will be changed by that amount.  If the effort value is expressed
    480 as an unit defined in `org-duration-units' (e.g. \"3h\"), the modified
    481 value will be converted to a hh:mm duration.
    482 
    483 This command will update the \"Effort\" property of the currently
    484 clocked item, and the value displayed in the mode line.
    485 
    486 (fn &optional VALUE)" t)
    487 (autoload 'org-resolve-clocks "org-clock" "\
    488 Resolve all currently open Org clocks.
    489 If `only-dangling-p' is non-nil, only ask to resolve dangling
    490 (i.e., not currently open and valid) clocks.
    491 
    492 (fn &optional ONLY-DANGLING-P PROMPT-FN LAST-VALID)" t)
    493 (autoload 'org-clock-in "org-clock" "\
    494 Start the clock on the current item.
    495 
    496 If necessary, clock-out of the currently active clock.
    497 
    498 With a `\\[universal-argument]' prefix argument SELECT, offer a list of recently clocked
    499 tasks to clock into.
    500 
    501 When SELECT is `\\[universal-argument] \\[universal-argument]', clock into the current task and mark it as
    502 the default task, a special task that will always be offered in the
    503 clocking selection, associated with the letter `d'.
    504 
    505 When SELECT is `\\[universal-argument] \\[universal-argument] \\[universal-argument]', clock in by using the last clock-out
    506 time as the start time.  See `org-clock-continuously' to make this
    507 the default behavior.
    508 
    509 (fn &optional SELECT START-TIME)" t)
    510 (autoload 'org-clock-toggle-auto-clockout "org-clock" nil t)
    511 (autoload 'org-clock-in-last "org-clock" "\
    512 Clock in the last closed clocked item.
    513 When already clocking in, send a warning.
    514 With a universal prefix argument, select the task you want to
    515 clock in from the last clocked in tasks.
    516 With two universal prefix arguments, start clocking using the
    517 last clock-out time, if any.
    518 With three universal prefix arguments, interactively prompt
    519 for a todo state to switch to, overriding the existing value
    520 `org-clock-in-switch-to-state'.
    521 
    522 (fn &optional ARG)" t)
    523 (autoload 'org-clock-out "org-clock" "\
    524 Stop the currently running clock.
    525 Throw an error if there is no running clock and FAIL-QUIETLY is nil.
    526 With a universal prefix, prompt for a state to switch the clocked out task
    527 to, overriding the existing value of `org-clock-out-switch-to-state'.
    528 
    529 (fn &optional SWITCH-TO-STATE FAIL-QUIETLY AT-TIME)" t)
    530 (autoload 'org-clock-cancel "org-clock" "\
    531 Cancel the running clock by removing the start timestamp." t)
    532 (autoload 'org-clock-goto "org-clock" "\
    533 Go to the currently clocked-in entry, or to the most recently clocked one.
    534 With prefix arg SELECT, offer recently clocked tasks for selection.
    535 
    536 (fn &optional SELECT)" t)
    537 (autoload 'org-clock-sum-today "org-clock" "\
    538 Sum the times for each subtree for today.
    539 
    540 (fn &optional HEADLINE-FILTER)")
    541 (autoload 'org-clock-sum "org-clock" "\
    542 Sum the times for each subtree.
    543 Puts the resulting times in minutes as a text property on each headline.
    544 TSTART and TEND can mark a time range to be considered.
    545 HEADLINE-FILTER is a zero-arg function that, if specified, is called for
    546 each headline in the time range with point at the headline.  Headlines for
    547 which HEADLINE-FILTER returns nil are excluded from the clock summation.
    548 PROPNAME lets you set a custom text property instead of :org-clock-minutes.
    549 
    550 (fn &optional TSTART TEND HEADLINE-FILTER PROPNAME)")
    551 (autoload 'org-clock-display "org-clock" "\
    552 Show subtree times in the entire buffer.
    553 
    554 By default, show the total time for the range defined in
    555 `org-clock-display-default-range'.  With `\\[universal-argument]' prefix, show
    556 the total time for today instead.
    557 
    558 With `\\[universal-argument] \\[universal-argument]' prefix, use a custom range, entered at prompt.
    559 
    560 With `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix, display the total time in the
    561 echo area.
    562 
    563 Use `\\[org-clock-remove-overlays]' to remove the subtree times.
    564 
    565 (fn &optional ARG)" t)
    566 (autoload 'org-clock-remove-overlays "org-clock" "\
    567 Remove the occur highlights from the buffer.
    568 If NOREMOVE is nil, remove this function from the
    569 `before-change-functions' in the current buffer.
    570 
    571 (fn &optional BEG END NOREMOVE)" t)
    572 (autoload 'org-clock-out-if-current "org-clock" "\
    573 Clock out if the current entry contains the running clock.
    574 This is used to stop the clock after a TODO entry is marked DONE,
    575 and is only done if the variable `org-clock-out-when-done' is not nil.")
    576 (autoload 'org-clock-get-clocktable "org-clock" "\
    577 Get a formatted clocktable with parameters according to PROPS.
    578 The table is created in a temporary buffer, fully formatted and
    579 fontified, and then returned.
    580 
    581 (fn &rest PROPS)")
    582 (autoload 'org-clock-report "org-clock" "\
    583 Update or create a table containing a report about clocked time.
    584 
    585 If point is inside an existing clocktable block, update it.
    586 Otherwise, insert a new one.
    587 
    588 The new table inherits its properties from the variable
    589 `org-clock-clocktable-default-properties'.
    590 
    591 The scope of the clocktable, when not specified in the previous
    592 variable, is `subtree' of the current heading when the function is
    593 called from inside heading, and `file' elsewhere (before the first
    594 heading).
    595 
    596 When called with a prefix argument, move to the first clock table
    597 in the buffer and update it.
    598 
    599 (fn &optional ARG)" t)
    600 (eval-after-load 'org '(progn (org-dynamic-block-define "clocktable" #'org-clock-report)))
    601 (autoload 'org-clocktable-shift "org-clock" "\
    602 Try to shift the :block date of the clocktable at point.
    603 Point must be in the #+BEGIN: line of a clocktable, or this function
    604 will throw an error.
    605 DIR is a direction, a symbol `left', `right', `up', or `down'.
    606 Both `left' and `down' shift the block toward the past, `up' and `right'
    607 push it toward the future.
    608 N is the number of shift steps to take.  The size of the step depends on
    609 the currently selected interval size.
    610 
    611 (fn DIR N)")
    612 (autoload 'org-dblock-write:clocktable "org-clock" "\
    613 Write the standard clocktable.
    614 
    615 (fn PARAMS)")
    616 (autoload 'org-clock-update-time-maybe "org-clock" "\
    617 If this is a CLOCK line, update it and return t.
    618 Otherwise, return nil." t)
    619 
    620 
    621 ;;; Generated autoloads from org-colview.el
    622 
    623 (autoload 'org-columns-remove-overlays "org-colview" "\
    624 Remove all currently active column overlays." t)
    625 (autoload 'org-columns-get-format-and-top-level "org-colview")
    626 (autoload 'org-columns "org-colview" "\
    627 Turn on column view on an Org mode file.
    628 
    629 Column view applies to the whole buffer if point is before the first
    630 headline.  Otherwise, it applies to the first ancestor setting
    631 \"COLUMNS\" property.  If there is none, it defaults to the current
    632 headline.  With a `\\[universal-argument]' prefix argument, GLOBAL,
    633 turn on column view for the whole buffer unconditionally.
    634 
    635 When COLUMNS-FMT-STRING is non-nil, use it as the column format.
    636 
    637 (fn &optional GLOBAL COLUMNS-FMT-STRING)" t)
    638 (autoload 'org-columns-compute "org-colview" "\
    639 Summarize the values of PROPERTY hierarchically.
    640 Also update existing values for PROPERTY according to the first
    641 column specification.
    642 
    643 (fn PROPERTY)" t)
    644 (autoload 'org-dblock-write:columnview "org-colview" "\
    645 Write the column view table.
    646 
    647 PARAMS is a property list of parameters:
    648 
    649 `:id' (mandatory)
    650 
    651     The ID property of the entry where the columns view should be
    652     built.  When the symbol `local', call locally.  When `global'
    653     call column view with the cursor at the beginning of the
    654     buffer (usually this means that the whole buffer switches to
    655     column view).  When \"file:path/to/file.org\", invoke column
    656     view at the start of that file.  Otherwise, the ID is located
    657     using `org-id-find'.
    658 
    659 `:exclude-tags'
    660 
    661     List of tags to exclude from column view table.
    662 
    663 `:format'
    664 
    665     When non-nil, specify the column view format to use.
    666 
    667 `:hlines'
    668 
    669     When non-nil, insert a hline before each item.  When
    670     a number, insert a hline before each level inferior or equal
    671     to that number.
    672 
    673 `:indent'
    674 
    675     When non-nil, indent each ITEM field according to its level.
    676 
    677 `:match'
    678 
    679     When set to a string, use this as a tags/property match filter.
    680 
    681 `:maxlevel'
    682 
    683     When set to a number, don't capture headlines below this level.
    684 
    685 `:skip-empty-rows'
    686 
    687     When non-nil, skip rows where all specifiers other than ITEM
    688     are empty.
    689 
    690 `:vlines'
    691 
    692     When non-nil, make each column a column group to enforce
    693     vertical lines.
    694 
    695 `:link'
    696 
    697     Link the item headlines in the table to their origins.
    698 
    699 `:formatter'
    700 
    701     A function to format the data and insert it into the
    702     buffer.  Overrides the default formatting function set in
    703     `org-columns-dblock-formatter'.
    704 
    705 (fn PARAMS)")
    706 (autoload 'org-columns-insert-dblock "org-colview" "\
    707 Create a dynamic block capturing a column view table." t)
    708 (eval-after-load 'org '(progn (org-dynamic-block-define "columnview" #'org-columns-insert-dblock)))
    709 (autoload 'org-agenda-columns "org-colview" "\
    710 Turn on or update column view in the agenda." t)
    711 
    712 
    713 ;;; Generated autoloads from org-compat.el
    714 
    715 (autoload 'org-list-of-strings-p "org-compat" "\
    716 Return t if OBJECT is nil or a list of strings.
    717 
    718 (fn OBJECT)")
    719 (function-put 'org-list-of-strings-p 'pure 't)
    720 (function-put 'org-list-of-strings-p 'side-effect-free 'error-free)
    721 (autoload 'org-check-version "org-compat" "\
    722 Try very hard to provide sensible version strings." nil t)
    723 
    724 
    725 ;;; Generated autoloads from org-datetree.el
    726 
    727 (autoload 'org-datetree-find-date-create "org-datetree" "\
    728 Find or create a day entry for date D.
    729 If KEEP-RESTRICTION is non-nil, do not widen the buffer.
    730 When it is nil, the buffer will be widened to make sure an existing date
    731 tree can be found.  If it is the symbol `subtree-at-point', then the tree
    732 will be built under the headline at point.
    733 
    734 (fn D &optional KEEP-RESTRICTION)")
    735 (autoload 'org-datetree-find-month-create "org-datetree" "\
    736 Find or create a month entry for date D.
    737 Compared to `org-datetree-find-date-create' this function creates
    738 entries grouped by month instead of days.
    739 If KEEP-RESTRICTION is non-nil, do not widen the buffer.
    740 When it is nil, the buffer will be widened to make sure an existing date
    741 tree can be found.  If it is the symbol `subtree-at-point', then the tree
    742 will be built under the headline at point.
    743 
    744 (fn D &optional KEEP-RESTRICTION)")
    745 (autoload 'org-datetree-find-iso-week-create "org-datetree" "\
    746 Find or create an ISO week entry for date D.
    747 Compared to `org-datetree-find-date-create' this function creates
    748 entries ordered by week instead of months.
    749 When it is nil, the buffer will be widened to make sure an existing date
    750 tree can be found.  If it is the symbol `subtree-at-point', then the tree
    751 will be built under the headline at point.
    752 
    753 (fn D &optional KEEP-RESTRICTION)")
    754 
    755 
    756 ;;; Generated autoloads from org-duration.el
    757 
    758 (autoload 'org-duration-set-regexps "org-duration" "\
    759 Set duration related regexps." t)
    760 (autoload 'org-duration-p "org-duration" "\
    761 Non-nil when string S is a time duration.
    762 
    763 (fn S)")
    764 (autoload 'org-duration-to-minutes "org-duration" "\
    765 Return number of minutes of DURATION string.
    766 
    767 When optional argument CANONICAL is non-nil, ignore
    768 `org-duration-units' and use standard time units value.
    769 
    770 A bare number is translated into minutes.  The empty string is
    771 translated into 0.0.
    772 
    773 Return value as a float.  Raise an error if duration format is
    774 not recognized.
    775 
    776 (fn DURATION &optional CANONICAL)")
    777 (autoload 'org-duration-from-minutes "org-duration" "\
    778 Return duration string for a given number of MINUTES.
    779 
    780 Format duration according to `org-duration-format' or FMT, when
    781 non-nil.
    782 
    783 When optional argument CANONICAL is non-nil, ignore
    784 `org-duration-units' and use standard time units value.
    785 
    786 Raise an error if expected format is unknown.
    787 
    788 (fn MINUTES &optional FMT CANONICAL)")
    789 (autoload 'org-duration-h:mm-only-p "org-duration" "\
    790 Non-nil when every duration in TIMES has \"H:MM\" or \"H:MM:SS\" format.
    791 
    792 TIMES is a list of duration strings.
    793 
    794 Return nil if any duration is expressed with units, as defined in
    795 `org-duration-units'.  Otherwise, if any duration is expressed
    796 with \"H:MM:SS\" format, return `h:mm:ss'.  Otherwise, return
    797 `h:mm'.
    798 
    799 (fn TIMES)")
    800 
    801 
    802 ;;; Generated autoloads from org-element.el
    803 
    804 (autoload 'org-element-update-syntax "org-element" "\
    805 Update parser internals." t)
    806 (autoload 'org-element-interpret-data "org-element" "\
    807 Interpret DATA as Org syntax.
    808 DATA is a parse tree, an element, an object or a secondary string
    809 to interpret.  Return Org syntax as a string.
    810 
    811 (fn DATA)")
    812 (defvar org-element-use-cache t "\
    813 Non-nil when Org parser should cache its results.")
    814 (autoload 'org-element-cache-reset "org-element" "\
    815 Reset cache in current buffer.
    816 When optional argument ALL is non-nil, reset cache in all Org
    817 buffers.
    818 When optional argument NO-PERSISTENCE is non-nil, do not try to update
    819 the cache persistence in the buffer.
    820 
    821 (fn &optional ALL NO-PERSISTENCE)" t)
    822 (autoload 'org-element-cache-store-key "org-element" "\
    823 Store KEY with VALUE associated with EPOM - point, marker, or element.
    824 The key can be retrieved as long as the element (provided or at point)
    825 contents is not modified.
    826 If optional argument ROBUST is non-nil, the key will be retained even
    827 when the contents (children) of current element are modified.  Only
    828 non-robust element modifications (affecting the element properties
    829 other then begin/end boundaries) will invalidate the key then.
    830 
    831 (fn EPOM KEY VALUE &optional ROBUST)")
    832 (autoload 'org-element-cache-get-key "org-element" "\
    833 Get KEY associated with EPOM - point, marker, or element.
    834 Return DEFAULT when KEY is not associated with EPOM.
    835 The key can be retrieved as long as the element (provided or at point)
    836 contents is not modified.
    837 
    838 (fn EPOM KEY &optional DEFAULT)")
    839 (autoload 'org-element-cache-refresh "org-element" "\
    840 Refresh cache at position POS.
    841 
    842 (fn POS)")
    843 (autoload 'org-element-cache-map "org-element" "\
    844 Map all elements in current buffer with FUNC according to GRANULARITY.
    845 Collect non-nil return values into result list.
    846 
    847 FUNC should accept a single argument - the element.
    848 
    849 FUNC can modify the buffer, but doing so may reduce performance.  If
    850 buffer is modified, the mapping will continue from an element starting
    851 after the last mapped element.  If the last mapped element is deleted,
    852 the subsequent element will be skipped as it cannot be distinguished
    853 deterministically from a changed element.  If FUNC is expected to
    854 delete the element, it should directly set the value of
    855 `org-element-cache-map-continue-from' to force `org-element-cache-map'
    856 continue from the right point in buffer.
    857 
    858 If some elements are not yet in cache, they will be added.
    859 
    860 GRANULARITY can be `headline', `headline+inlinetask'
    861 `greater-element', or `element'.  The default is
    862 `headline+inlinetask'.  `object' granularity is not supported.
    863 
    864 RESTRICT-ELEMENTS is a list of element types to be mapped over.
    865 
    866 NEXT-RE is a regexp used to search next candidate match when FUNC
    867 returns non-nil and to search the first candidate match.  FAIL-RE is a
    868 regexp used to search next candidate match when FUNC returns nil.  The
    869 mapping will continue starting from headline at the RE match.
    870 
    871 FROM-POS and TO-POS are buffer positions.  When non-nil, they bound the
    872 mapped elements to elements starting at of after FROM-POS but before
    873 TO-POS.
    874 
    875 AFTER-ELEMENT, when non-nil, bounds the mapping to all the elements
    876 after AFTER-ELEMENT (i.e. if AFTER-ELEMENT is a headline section, we
    877 map all the elements starting from first element inside section, but
    878 not including the section).
    879 
    880 LIMIT-COUNT limits mapping to that many first matches where FUNC
    881 returns non-nil.
    882 
    883 NARROW controls whether current buffer narrowing should be preserved.
    884 
    885 This function does a subset of what `org-element-map' does, but with
    886 much better performance.  Cached elements are supplied as the single
    887 argument of FUNC.  Changes to elements made in FUNC will also alter
    888 the cache.
    889 
    890 (fn FUNC &key (GRANULARITY \\='headline+inlinetask) RESTRICT-ELEMENTS NEXT-RE FAIL-RE FROM-POS (TO-POS (point-max-marker)) AFTER-ELEMENT LIMIT-COUNT NARROW)")
    891 (autoload 'org-element-at-point "org-element" "\
    892 Determine closest element around point or EPOM.
    893 
    894 When EPOM is an element, return it immediately.
    895 Otherwise, determine element at EPOM marker or position.
    896 
    897 Only check cached element when CACHED-ONLY is non-nil and return nil
    898 unconditionally when element at EPOM is not in cache.
    899 
    900 Return value is a list like (TYPE PROPS) where TYPE is the type
    901 of the element and PROPS a plist of properties associated to the
    902 element.
    903 
    904 Possible types are defined in `org-element-all-elements'.
    905 Properties depend on element or object type, but always include
    906 `:begin', `:end', and `:post-blank' properties.
    907 
    908 As a special case, if point is at the very beginning of the first
    909 item in a list or sub-list, returned element will be that list
    910 instead of the item.  Likewise, if point is at the beginning of
    911 the first row of a table, returned element will be the table
    912 instead of the first row.
    913 
    914 When point is at the end of the buffer, return the innermost
    915 element ending there.
    916 
    917 This function may modify the match data.
    918 
    919 (fn &optional EPOM CACHED-ONLY)")
    920 (defsubst org-element-at-point-no-context (&optional pom) "\
    921 Quickly find element at point or POM.
    922 
    923 It is a faster version of `org-element-at-point' that is not
    924 guaranteed to return cached element.  `:parent' element may be
    925 deferred and slow to retrieve." (or (org-element-at-point pom 'cached-only) (org-element-with-disabled-cache (org-element-at-point pom))))
    926 (autoload 'org-element-context "org-element" "\
    927 Return smallest element or object around point.
    928 
    929 Return value is a list like (TYPE PROPS) where TYPE is the type
    930 of the element or object and PROPS a plist of properties
    931 associated to it.
    932 
    933 Possible types are defined in `org-element-all-elements' and
    934 `org-element-all-objects'.  Properties depend on element or
    935 object type, but always include `:begin', `:end', `:parent' and
    936 `:post-blank'.
    937 
    938 As a special case, if point is right after an object and not at
    939 the beginning of any other object, return that object.
    940 
    941 Optional argument ELEMENT, when non-nil, is the closest element
    942 containing point, as returned by `org-element-at-point'.
    943 Providing it allows for quicker computation.
    944 
    945 This function may modify match data.
    946 
    947 (fn &optional ELEMENT)")
    948 
    949 
    950 ;;; Generated autoloads from org-feed.el
    951 
    952 (autoload 'org-feed-update-all "org-feed" "\
    953 Get inbox items from all feeds in `org-feed-alist'." t)
    954 (autoload 'org-feed-update "org-feed" "\
    955 Get inbox items from FEED.
    956 FEED can be a string with an association in `org-feed-alist', or
    957 it can be a list structured like an entry in `org-feed-alist'.
    958 
    959 (fn FEED &optional RETRIEVE-ONLY)" t)
    960 (autoload 'org-feed-goto-inbox "org-feed" "\
    961 Go to the inbox that captures the feed named FEED.
    962 
    963 (fn FEED)" t)
    964 (autoload 'org-feed-show-raw-feed "org-feed" "\
    965 Show the raw feed buffer of a feed.
    966 
    967 (fn FEED)" t)
    968 
    969 
    970 ;;; Generated autoloads from org-footnote.el
    971 
    972 (autoload 'org-footnote-action "org-footnote" "\
    973 Do the right thing for footnotes.
    974 
    975 When at a footnote reference, jump to the definition.
    976 
    977 When at a definition, jump to the references if they exist, offer
    978 to create them otherwise.
    979 
    980 When neither at definition or reference, create a new footnote,
    981 interactively if possible.
    982 
    983 With prefix arg SPECIAL, or when no footnote can be created,
    984 offer additional commands in a menu.
    985 
    986 (fn &optional SPECIAL)" t)
    987 
    988 
    989 ;;; Generated autoloads from org-goto.el
    990 
    991 (autoload 'org-goto-location "org-goto" "\
    992 Let the user select a location in current buffer.
    993 This function uses a recursive edit.  It returns the selected
    994 position or nil.
    995 
    996 (fn &optional BUF HELP)")
    997 (autoload 'org-goto "org-goto" "\
    998 Look up a different location in the current file, keeping current visibility.
    999 
   1000 When you want look-up or go to a different location in a
   1001 document, the fastest way is often to fold the entire buffer and
   1002 then dive into the tree.  This method has the disadvantage, that
   1003 the previous location will be folded, which may not be what you
   1004 want.
   1005 
   1006 This command works around this by showing a copy of the current
   1007 buffer in an indirect buffer, in overview mode.  You can dive
   1008 into the tree in that copy, use `org-occur' and incremental search
   1009 to find a location.  When pressing RET or `Q', the command
   1010 returns to the original buffer in which the visibility is still
   1011 unchanged.  After RET it will also jump to the location selected
   1012 in the indirect buffer and expose the headline hierarchy above.
   1013 
   1014 With a prefix argument, use the alternative interface: e.g., if
   1015 `org-goto-interface' is `outline' use `outline-path-completion'.
   1016 
   1017 (fn &optional ALTERNATIVE-INTERFACE)" t)
   1018 
   1019 
   1020 ;;; Generated autoloads from org-id.el
   1021 
   1022 (autoload 'org-id-get-create "org-id" "\
   1023 Create an ID for the current entry and return it.
   1024 If the entry already has an ID, just return it.
   1025 With optional argument FORCE, force the creation of a new ID.
   1026 
   1027 (fn &optional FORCE)" t)
   1028 (autoload 'org-id-copy "org-id" "\
   1029 Copy the ID of the entry at point to the kill ring.
   1030 Create an ID if necessary." t)
   1031 (autoload 'org-id-get "org-id" "\
   1032 Get the ID of the entry at EPOM.
   1033 
   1034 EPOM is an element, marker, or buffer position.  If EPOM is nil,
   1035 refer to the entry at point.
   1036 
   1037 If INHERIT is non-nil, ID properties inherited from parent
   1038 entries are considered.  Otherwise, only ID properties on the
   1039 entry itself are considered.
   1040 
   1041 When CREATE is nil, return the ID of the entry if found,
   1042 otherwise nil.  When CREATE is non-nil, create an ID if none has
   1043 been found, and return the new ID.  PREFIX will be passed through
   1044 to `org-id-new'.
   1045 
   1046 (fn &optional EPOM CREATE PREFIX INHERIT)")
   1047 (autoload 'org-id-get-with-outline-path-completion "org-id" "\
   1048 Use `outline-path-completion' to retrieve the ID of an entry.
   1049 TARGETS may be a setting for `org-refile-targets' to define
   1050 eligible headlines.  When omitted, all headlines in the current
   1051 file are eligible.  This function returns the ID of the entry.
   1052 If necessary, the ID is created.
   1053 
   1054 (fn &optional TARGETS)")
   1055 (autoload 'org-id-get-with-outline-drilling "org-id" "\
   1056 Use an outline-cycling interface to retrieve the ID of an entry.
   1057 This only finds entries in the current buffer, using `org-goto-location'.
   1058 It returns the ID of the entry.  If necessary, the ID is created.")
   1059 (autoload 'org-id-goto "org-id" "\
   1060 Switch to the buffer containing the entry with id ID.
   1061 Move the cursor to that entry in that buffer.
   1062 
   1063 (fn ID)" t)
   1064 (autoload 'org-id-find "org-id" "\
   1065 Return the location of the entry with the id ID.
   1066 The return value is a cons cell (file-name . position), or nil
   1067 if there is no entry with that ID.
   1068 With optional argument MARKERP, return the position as a new marker.
   1069 
   1070 (fn ID &optional MARKERP)")
   1071 (autoload 'org-id-new "org-id" "\
   1072 Create a new globally unique ID.
   1073 
   1074 An ID consists of two parts separated by a colon:
   1075 - a prefix
   1076 - a unique part that will be created according to `org-id-method'.
   1077 
   1078 PREFIX can specify the prefix, the default is given by the variable
   1079 `org-id-prefix'.  However, if PREFIX is the symbol `none', don't use any
   1080 prefix even if `org-id-prefix' specifies one.
   1081 
   1082 So a typical ID could look like \"Org:4nd91V40HI\".
   1083 
   1084 (fn &optional PREFIX)")
   1085 (autoload 'org-id-update-id-locations "org-id" "\
   1086 Scan relevant files for IDs.
   1087 Store the relation between files and corresponding IDs.
   1088 This will scan all agenda files, all associated archives, all open Org
   1089 files, and all files currently mentioned in `org-id-locations'.
   1090 When FILES is given, scan also these files.
   1091 If SILENT is non-nil, messages are suppressed.
   1092 
   1093 (fn &optional FILES SILENT)" t)
   1094 (autoload 'org-id-find-id-file "org-id" "\
   1095 Query the id database for the file in which ID is located.
   1096 
   1097 (fn ID)")
   1098 (autoload 'org-id-store-link "org-id" "\
   1099 Store a link to the current entry, using its ID.
   1100 
   1101 The link description is based on the heading, or if before the
   1102 first heading, the title keyword if available, or else the
   1103 filename.
   1104 
   1105 When `org-link-context-for-files' and `org-id-link-use-context'
   1106 are non-nil, add a search string to the link.  The link
   1107 description is then based on the search string target.
   1108 
   1109 When in addition `org-id-link-consider-parent-id' is non-nil, the
   1110 ID can be inherited from a parent entry, with the search string
   1111 used to still link to the current location." t)
   1112 (autoload 'org-id-store-link-maybe "org-id" "\
   1113 Store a link to the current entry using its ID if enabled.
   1114 
   1115 The value of `org-id-link-to-org-use-id' determines whether an ID
   1116 link should be stored, using `org-id-store-link'.
   1117 
   1118 Assume the function is called interactively if INTERACTIVE? is
   1119 non-nil.
   1120 
   1121 (fn &optional INTERACTIVE?)")
   1122 
   1123 
   1124 ;;; Generated autoloads from org-indent.el
   1125 
   1126 (autoload 'org-indent-mode "org-indent" "\
   1127 When active, indent text according to outline structure.
   1128 
   1129 Internally this works by adding `line-prefix' and `wrap-prefix'
   1130 properties, after each buffer modification, on the modified zone.
   1131 
   1132 The process is synchronous.  Though, initial indentation of
   1133 buffer, which can take a few seconds on large buffers, is done
   1134 during idle time.
   1135 
   1136 This is a minor mode.  If called interactively, toggle the
   1137 `Org-Indent mode' mode.  If the prefix argument is positive,
   1138 enable the mode, and if it is zero or negative, disable the mode.
   1139 
   1140 If called from Lisp, toggle the mode if ARG is `toggle'.  Enable
   1141 the mode if ARG is nil, omitted, or is a positive number.
   1142 Disable the mode if ARG is a negative number.
   1143 
   1144 To check whether the minor mode is enabled in the current buffer,
   1145 evaluate `org-indent-mode'.
   1146 
   1147 The mode's hook is called both when the mode is enabled and when
   1148 it is disabled.
   1149 
   1150 (fn &optional ARG)" t)
   1151 
   1152 
   1153 ;;; Generated autoloads from org-keys.el
   1154 
   1155 (autoload 'org-babel-describe-bindings "org-keys" "\
   1156 Describe all keybindings behind `org-babel-key-prefix'." t)
   1157 
   1158 
   1159 ;;; Generated autoloads from org-lint.el
   1160 
   1161 (autoload 'org-lint-add-checker "org-lint" "\
   1162 Add a new checker for linter.
   1163 
   1164 NAME is a unique check identifier, as a non-nil symbol.  SUMMARY
   1165 is a short description of the check, as a string.
   1166 
   1167 The check is done calling the function FUN with one mandatory
   1168 argument, the parse tree describing the current Org buffer.  Such
   1169 function calls are wrapped within a `save-excursion' and point is
   1170 always at `point-min'.  Its return value has to be an
   1171 alist (POSITION MESSAGE) where POSITION refer to the buffer
   1172 position of the error, as an integer, and MESSAGE is a one-line
   1173 string describing the error.
   1174 
   1175 Optional argument PROPS provides additional information about the
   1176 checker.  Currently, two properties are supported:
   1177 
   1178   `:categories'
   1179 
   1180      Categories relative to the check, as a list of symbol.  They
   1181      are used for filtering when calling `org-lint'.  Checkers
   1182      not explicitly associated to a category are collected in the
   1183      `default' one.
   1184 
   1185   `:trust'
   1186 
   1187     The trust level one can have in the check.  It is either
   1188     `low' or `high', depending on the heuristics implemented and
   1189     the nature of the check.  This has an indicative value only
   1190     and is displayed along reports.
   1191 
   1192 (fn NAME SUMMARY FUN &rest PROPS)")
   1193 (function-put 'org-lint-add-checker 'lisp-indent-function 1)
   1194 (autoload 'org-lint "org-lint" "\
   1195 Check current Org buffer for syntax mistakes.
   1196 
   1197 By default, run all checkers.  With a `\\[universal-argument]' prefix ARG, select one
   1198 category of checkers only.  With a `\\[universal-argument] \\[universal-argument]' prefix, run one precise
   1199 checker by its name.
   1200 
   1201 ARG can also be a list of checker names, as symbols, to run.
   1202 
   1203 (fn &optional ARG)" t)
   1204 
   1205 
   1206 ;;; Generated autoloads from org-list.el
   1207 
   1208 (autoload 'org-list-checkbox-radio-mode "org-list" "\
   1209 When turned on, use list checkboxes as radio buttons.
   1210 
   1211 This is a minor mode.  If called interactively, toggle the
   1212 `Org-List-Checkbox-Radio mode' mode.  If the prefix argument is
   1213 positive, enable the mode, and if it is zero or negative, disable
   1214 the mode.
   1215 
   1216 If called from Lisp, toggle the mode if ARG is `toggle'.  Enable
   1217 the mode if ARG is nil, omitted, or is a positive number.
   1218 Disable the mode if ARG is a negative number.
   1219 
   1220 To check whether the minor mode is enabled in the current buffer,
   1221 evaluate `org-list-checkbox-radio-mode'.
   1222 
   1223 The mode's hook is called both when the mode is enabled and when
   1224 it is disabled.
   1225 
   1226 (fn &optional ARG)" t)
   1227 
   1228 
   1229 ;;; Generated autoloads from org-macs.el
   1230 
   1231 (autoload 'org-load-noerror-mustsuffix "org-macs" "\
   1232 Load FILE with optional arguments NOERROR and MUSTSUFFIX.
   1233 
   1234 (fn FILE)" nil t)
   1235 (autoload 'org-element-with-disabled-cache "org-macs" "\
   1236 Run BODY without active org-element-cache.
   1237 
   1238 (fn &rest BODY)" nil t)
   1239 (function-put 'org-element-with-disabled-cache 'lisp-indent-function 0)
   1240 
   1241 
   1242 ;;; Generated autoloads from org-mobile.el
   1243 
   1244 (autoload 'org-mobile-push "org-mobile" "\
   1245 Push the current state of Org affairs to the target directory.
   1246 This will create the index file, copy all agenda files there, and also
   1247 create all custom agenda views, for upload to the mobile phone." t)
   1248 (autoload 'org-mobile-pull "org-mobile" "\
   1249 Pull the contents of `org-mobile-capture-file' and integrate them.
   1250 Apply all flagged actions, flag entries to be flagged and then call an
   1251 agenda view showing the flagged items." t)
   1252 
   1253 
   1254 ;;; Generated autoloads from org-num.el
   1255 
   1256 (defvar org-num-face nil "\
   1257 Face to use for numbering.
   1258 When nil, use the same face as the headline.  This value is
   1259 ignored if `org-num-format-function' specifies a face for its
   1260 output.")
   1261 (custom-autoload 'org-num-face "org-num" t)
   1262 (put 'org-num-face 'safe-local-variable (lambda (val) (or (null val) (facep val))))
   1263 (defvar org-num-max-level nil "\
   1264 Level below which headlines are not numbered.
   1265 When set to nil, all headlines are numbered.")
   1266 (custom-autoload 'org-num-max-level "org-num" t)
   1267 (put 'org-num-max-level 'safe-local-variable (lambda (val) (or (null val) (wholenump val))))
   1268 (defvar org-num-skip-commented nil "\
   1269 Non-nil means commented sub-trees are not numbered.")
   1270 (custom-autoload 'org-num-skip-commented "org-num" t)
   1271 (put 'org-num-skip-commented 'safe-local-variable #'booleanp)
   1272 (defvar org-num-skip-footnotes nil "\
   1273 Non-nil means footnotes sections are not numbered.")
   1274 (custom-autoload 'org-num-skip-footnotes "org-num" t)
   1275 (put 'org-num-skip-footnotes 'safe-local-variable #'booleanp)
   1276 (defvar org-num-skip-tags nil "\
   1277 List of tags preventing the numbering of sub-trees.
   1278 
   1279 For example, add \"ARCHIVE\" to this list to avoid numbering
   1280 archived sub-trees.
   1281 
   1282 Tag in this list prevent numbering the whole sub-tree,
   1283 irrespective to `org-use-tag-inheritance', or other means to
   1284 control tag inheritance.")
   1285 (custom-autoload 'org-num-skip-tags "org-num" t)
   1286 (put 'org-num-skip-tags 'safe-local-variable #'org-list-of-strings-p)
   1287 (defvar org-num-skip-unnumbered nil "\
   1288 Non-nil means numbering obeys to UNNUMBERED property.")
   1289 (custom-autoload 'org-num-skip-unnumbered "org-num" t)
   1290 (put 'org-num-skip-unnumbered 'safe-local-variable #'booleanp)
   1291 (autoload 'org-num-default-format "org-num" "\
   1292 Default numbering display function.
   1293 NUMBERING is a list of numbers.
   1294 
   1295 (fn NUMBERING)")
   1296 (autoload 'org-num-mode "org-num" "\
   1297 Dynamic numbering of headlines in an Org buffer.
   1298 
   1299 This is a minor mode.  If called interactively, toggle the
   1300 `Org-Num mode' mode.  If the prefix argument is positive, enable
   1301 the mode, and if it is zero or negative, disable the mode.
   1302 
   1303 If called from Lisp, toggle the mode if ARG is `toggle'.  Enable
   1304 the mode if ARG is nil, omitted, or is a positive number.
   1305 Disable the mode if ARG is a negative number.
   1306 
   1307 To check whether the minor mode is enabled in the current buffer,
   1308 evaluate `org-num-mode'.
   1309 
   1310 The mode's hook is called both when the mode is enabled and when
   1311 it is disabled.
   1312 
   1313 (fn &optional ARG)" t)
   1314 
   1315 
   1316 ;;; Generated autoloads from org-plot.el
   1317 
   1318 (autoload 'org-plot/gnuplot "org-plot" "\
   1319 Plot table using gnuplot.  Gnuplot options can be specified with PARAMS.
   1320 If not given options will be taken from the +PLOT
   1321 line directly before or after the table.
   1322 
   1323 (fn &optional PARAMS)" t)
   1324 
   1325 
   1326 ;;; Generated autoloads from org-refile.el
   1327 
   1328 (autoload 'org-refile-copy "org-refile" "\
   1329 Like `org-refile', but preserve the refiled subtree." t)
   1330 (autoload 'org-refile-reverse "org-refile" "\
   1331 Refile while temporarily toggling `org-reverse-note-order'.
   1332 So if `org-refile' would append the entry as the last entry under
   1333 the target heading, `org-refile-reverse' will prepend it as the
   1334 first entry, and vice-versa.
   1335 
   1336 (fn &optional ARG DEFAULT-BUFFER RFLOC MSG)" t)
   1337 (autoload 'org-refile "org-refile" "\
   1338 Move the entry or entries at point to another heading.
   1339 
   1340 The list of target headings is compiled using the information in
   1341 `org-refile-targets', which see.
   1342 
   1343 At the target location, the entry is filed as a subitem of the
   1344 target heading.  Depending on `org-reverse-note-order', the new
   1345 subitem will either be the first or the last subitem.
   1346 
   1347 If there is an active region, all entries in that region will be
   1348 refiled.  However, the region must fulfill the requirement that
   1349 the first heading sets the top-level of the moved text.
   1350 
   1351 With a `\\[universal-argument]' ARG, the command will only visit the target location
   1352 and not actually move anything.
   1353 
   1354 With a prefix `\\[universal-argument] \\[universal-argument]', go to the location where the last
   1355 refiling operation has put the subtree.
   1356 
   1357 With a numeric prefix argument of `2', refile to the running clock.
   1358 
   1359 With a numeric prefix argument of `3', emulate `org-refile-keep'
   1360 being set to t and copy to the target location, don't move it.
   1361 Beware that keeping refiled entries may result in duplicated ID
   1362 properties.
   1363 
   1364 RFLOC can be a refile location obtained in a different way.  It
   1365 should be a list with the following 4 elements:
   1366 
   1367 1. Name - an identifier for the refile location, typically the
   1368 headline text
   1369 2. File - the file the refile location is in
   1370 3. nil - used for generating refile location candidates, not
   1371 needed when passing RFLOC
   1372 4. Position - the position in the specified file of the
   1373 headline to refile under
   1374 
   1375 MSG is a string to replace \"Refile\" in the default prompt with
   1376 another verb.  E.g. `org-refile-copy' sets this parameter to \"Copy\".
   1377 
   1378 See also `org-refile-use-outline-path'.
   1379 
   1380 If you are using target caching (see `org-refile-use-cache'), you
   1381 have to clear the target cache in order to find new targets.
   1382 This can be done with a `0' prefix (\\`C-0 C-c C-w') or a triple
   1383 prefix argument (\\`C-u C-u C-u C-c C-w').
   1384 
   1385 (fn &optional ARG DEFAULT-BUFFER RFLOC MSG)" t)
   1386 
   1387 
   1388 ;;; Generated autoloads from org-table.el
   1389 
   1390 (autoload 'org-table-header-line-mode "org-table" "\
   1391 Display the first row of the table at point in the header line.
   1392 
   1393 This is a minor mode.  If called interactively, toggle the
   1394 `Org-Table-Header-Line mode' mode.  If the prefix argument is
   1395 positive, enable the mode, and if it is zero or negative, disable
   1396 the mode.
   1397 
   1398 If called from Lisp, toggle the mode if ARG is `toggle'.  Enable
   1399 the mode if ARG is nil, omitted, or is a positive number.
   1400 Disable the mode if ARG is a negative number.
   1401 
   1402 To check whether the minor mode is enabled in the current buffer,
   1403 evaluate `org-table-header-line-mode'.
   1404 
   1405 The mode's hook is called both when the mode is enabled and when
   1406 it is disabled.
   1407 
   1408 (fn &optional ARG)" t)
   1409 (autoload 'org-table-create-with-table.el "org-table" "\
   1410 Use the table.el package to insert a new table.
   1411 If there is already a table at point, convert between Org tables
   1412 and table.el tables." t)
   1413 (autoload 'org-table-create-or-convert-from-region "org-table" "\
   1414 Convert region to table, or create an empty table.
   1415 If there is an active region, convert it to a table, using the function
   1416 `org-table-convert-region'.  See the documentation of that function
   1417 to learn how the prefix argument is interpreted to determine the field
   1418 separator.
   1419 If there is no such region, create an empty table with `org-table-create'.
   1420 
   1421 (fn ARG)" t)
   1422 (autoload 'org-table-create "org-table" "\
   1423 Query for a size and insert a table skeleton.
   1424 SIZE is a string Columns x Rows like for example \"3x2\".
   1425 
   1426 (fn &optional SIZE)" t)
   1427 (autoload 'org-table-convert-region "org-table" "\
   1428 Convert region to a table.
   1429 
   1430 The region goes from BEG0 to END0, but these borders will be moved
   1431 slightly, to make sure a beginning of line in the first line is
   1432 included.
   1433 
   1434 Throw an error when the region has more than
   1435 `org-table-convert-region-max-lines' lines.
   1436 
   1437 SEPARATOR specifies the field separator in the lines.  It can have the
   1438 following values:
   1439 
   1440 (4)     Use the comma as a field separator
   1441 (16)    Use a TAB as field separator
   1442 (64)    Prompt for a regular expression as field separator
   1443 integer  When a number, use that many spaces, or a TAB, as field separator
   1444 regexp   When a regular expression, use it to match the separator
   1445 nil      When nil, the command tries to be smart and figure out the
   1446          separator in the following way:
   1447          - when each line contains a TAB, assume TAB-separated material
   1448          - when each line contains a comma, assume CSV material
   1449          - else, assume one or more SPACE characters as separator.
   1450 `babel-auto'
   1451        Use the same rules as nil, but do not try any separator when
   1452        the region contains a single line and has no commas or tabs.
   1453 
   1454 (fn BEG0 END0 &optional SEPARATOR)" t)
   1455 (autoload 'org-table-import "org-table" "\
   1456 Import FILE as a table.
   1457 
   1458 The command tries to be smart and figure out the separator in the
   1459 following way:
   1460 
   1461 - when each line contains a TAB, assume TAB-separated material;
   1462 - when each line contains a comma, assume CSV material;
   1463 - else, assume one or more SPACE characters as separator.
   1464 
   1465 When non-nil, SEPARATOR specifies the field separator in the
   1466 lines.  It can have the following values:
   1467 
   1468 - (4)     Use the comma as a field separator.
   1469 - (16)    Use a TAB as field separator.
   1470 - (64)    Prompt for a regular expression as field separator.
   1471 - integer When a number, use that many spaces, or a TAB, as field separator.
   1472 - regexp  When a regular expression, use it to match the separator.
   1473 
   1474 (fn FILE SEPARATOR)" t)
   1475 (autoload 'org-table-begin "org-table" "\
   1476 Find the beginning of the table and return its position.
   1477 With a non-nil optional argument TABLE-TYPE, return the beginning
   1478 of a table.el-type table.  This function assumes point is on
   1479 a table.
   1480 
   1481 (fn &optional TABLE-TYPE)")
   1482 (autoload 'org-table-end "org-table" "\
   1483 Find the end of the table and return its position.
   1484 With a non-nil optional argument TABLE-TYPE, return the end of
   1485 a table.el-type table.  This function assumes point is on
   1486 a table.
   1487 
   1488 (fn &optional TABLE-TYPE)")
   1489 (autoload 'org-table-next-field "org-table" "\
   1490 Go to the next field in the current table, creating new lines as needed.
   1491 Before doing so, re-align the table if necessary." t)
   1492 (autoload 'org-table-previous-field "org-table" "\
   1493 Go to the previous field in the table.
   1494 Before doing so, re-align the table if necessary." t)
   1495 (autoload 'org-table-next-row "org-table" "\
   1496 Go to the next row (same column) in the current table.
   1497 When next row is an hline or outside the table, create a new empty
   1498 row.  Before doing so, re-align the table if necessary." t)
   1499 (autoload 'org-table-blank-field "org-table" "\
   1500 Blank the current table field or active region." t)
   1501 (autoload 'org-table-field-info "org-table" "\
   1502 Show info about the current field, and highlight any reference at point.
   1503 
   1504 (fn ARG)" t)
   1505 (autoload 'org-table-goto-column "org-table" "\
   1506 Move the cursor to the Nth column in the current table line.
   1507 With optional argument ON-DELIM, stop with point before the left delimiter
   1508 of the field.
   1509 If there are less than N fields, just go to after the last delimiter.
   1510 However, when FORCE is non-nil, create new columns if necessary.
   1511 
   1512 (fn N &optional ON-DELIM FORCE)" t)
   1513 (autoload 'org-table-insert-column "org-table" "\
   1514 Insert a new column into the table." t)
   1515 (autoload 'org-table-move-cell-up "org-table" "\
   1516 Move a single cell up in a table.
   1517 Swap with anything in target cell." t)
   1518 (autoload 'org-table-move-cell-down "org-table" "\
   1519 Move a single cell down in a table.
   1520 Swap with anything in target cell." t)
   1521 (autoload 'org-table-move-cell-left "org-table" "\
   1522 Move a single cell left in a table.
   1523 Swap with anything in target cell." t)
   1524 (autoload 'org-table-move-cell-right "org-table" "\
   1525 Move a single cell right in a table.
   1526 Swap with anything in target cell." t)
   1527 (autoload 'org-table-delete-column "org-table" "\
   1528 Delete a column from the table." t)
   1529 (autoload 'org-table-move-column-right "org-table" "\
   1530 Move column to the right." t)
   1531 (autoload 'org-table-move-column-left "org-table" "\
   1532 Move column to the left." t)
   1533 (autoload 'org-table-move-column "org-table" "\
   1534 Move the current column to the right.  With arg LEFT, move to the left.
   1535 
   1536 (fn &optional LEFT)" t)
   1537 (autoload 'org-table-move-row-down "org-table" "\
   1538 Move table row down." t)
   1539 (autoload 'org-table-move-row-up "org-table" "\
   1540 Move table row up." t)
   1541 (autoload 'org-table-move-row "org-table" "\
   1542 Move the current table line down.  With arg UP, move it up.
   1543 
   1544 (fn &optional UP)" t)
   1545 (autoload 'org-table-insert-row "org-table" "\
   1546 Insert a new row above the current line into the table.
   1547 With prefix ARG, insert below the current line.
   1548 
   1549 (fn &optional ARG)" t)
   1550 (autoload 'org-table-insert-hline "org-table" "\
   1551 Insert a horizontal-line below the current line into the table.
   1552 With prefix ABOVE, insert above the current line.
   1553 
   1554 (fn &optional ABOVE)" t)
   1555 (autoload 'org-table-hline-and-move "org-table" "\
   1556 Insert a hline and move to the row below that line.
   1557 
   1558 (fn &optional SAME-COLUMN)" t)
   1559 (autoload 'org-table-kill-row "org-table" "\
   1560 Delete the current row or horizontal line from the table." t)
   1561 (autoload 'org-table-cut-region "org-table" "\
   1562 Copy region in table to the clipboard and blank all relevant fields.
   1563 If there is no active region, use just the field at point.
   1564 
   1565 (fn BEG END)" t)
   1566 (autoload 'org-table-copy-down "org-table" "\
   1567 Copy the value of the current field one row below.
   1568 
   1569 If the field at the cursor is empty, copy the content of the
   1570 nearest non-empty field above.  With argument N, use the Nth
   1571 non-empty field.
   1572 
   1573 If the current field is not empty, it is copied down to the next
   1574 row, and the cursor is moved with it.  Therefore, repeating this
   1575 command causes the column to be filled row-by-row.
   1576 
   1577 If the variable `org-table-copy-increment' is non-nil and the
   1578 field is a number, a timestamp, or is either prefixed or suffixed
   1579 with a number, it will be incremented while copying.  By default,
   1580 increment by the difference between the value in the current
   1581 field and the one in the field above, if any.  To increment using
   1582 a fixed integer, set `org-table-copy-increment' to a number.  In
   1583 the case of a timestamp, increment by days.
   1584 
   1585 However, when N is 0, do not increment the field at all.
   1586 
   1587 (fn N)" t)
   1588 (autoload 'org-table-copy-region "org-table" "\
   1589 Copy rectangular region in table to clipboard.
   1590 A special clipboard is used which can only be accessed with
   1591 `org-table-paste-rectangle'.  Return the region copied, as a list
   1592 of lists of fields.
   1593 
   1594 (fn BEG END &optional CUT)" t)
   1595 (autoload 'org-table-paste-rectangle "org-table" "\
   1596 Paste a rectangular region into a table.
   1597 The upper right corner ends up in the current field.  All involved fields
   1598 will be overwritten.  If the rectangle does not fit into the present table,
   1599 the table is enlarged as needed.  The process ignores horizontal separator
   1600 lines." t)
   1601 (autoload 'org-table-edit-field "org-table" "\
   1602 Edit table field in a different window.
   1603 This is mainly useful for fields that contain hidden parts.
   1604 
   1605 When called with a `\\[universal-argument]' prefix, just make the full field
   1606 visible so that it can be edited in place.
   1607 
   1608 When called with a `\\[universal-argument] \\[universal-argument]' prefix, toggle `org-table-follow-field-mode'.
   1609 
   1610 (fn ARG)" t)
   1611 (autoload 'org-table-get-stored-formulas "org-table" "\
   1612 Return an alist with the stored formulas directly after current table.
   1613 By default, only return active formulas, i.e., formulas located
   1614 on the first line after the table.  However, if optional argument
   1615 LOCATION is a buffer position, consider the formulas there.
   1616 
   1617 (fn &optional NOERROR LOCATION)")
   1618 (autoload 'org-table-maybe-eval-formula "org-table" "\
   1619 Check if the current field starts with \"=\" or \":=\".
   1620 If yes, store the formula and apply it.")
   1621 (autoload 'org-table-rotate-recalc-marks "org-table" "\
   1622 Rotate the recalculation mark in the first column.
   1623 If in any row, the first field is not consistent with a mark,
   1624 insert a new column for the markers.
   1625 When there is an active region, change all the lines in the region,
   1626 after prompting for the marking character.
   1627 After each change, a message will be displayed indicating the meaning
   1628 of the new mark.
   1629 
   1630 (fn &optional NEWCHAR)" t)
   1631 (autoload 'org-table-maybe-recalculate-line "org-table" "\
   1632 Recompute the current line if marked for it, and if we haven't just done it." t)
   1633 (autoload 'org-table-eval-formula "org-table" "\
   1634 Replace the table field value at the cursor by the result of a calculation.
   1635 
   1636 In a table, this command replaces the value in the current field with the
   1637 result of a formula.  It also installs the formula as the \"current\" column
   1638 formula, by storing it in a special line below the table.  When called
   1639 with a `\\[universal-argument]' prefix the formula is installed as a field formula.
   1640 
   1641 When called with a `\\[universal-argument] \\[universal-argument]' prefix, insert the active equation for the field
   1642 back into the current field, so that it can be edited there.  This is useful
   1643 in order to use \\<org-table-fedit-map>`\\[org-table-show-reference]' to check the referenced fields.
   1644 
   1645 When called, the command first prompts for a formula, which is read in
   1646 the minibuffer.  Previously entered formulas are available through the
   1647 history list, and the last used formula is offered as a default.
   1648 These stored formulas are adapted correctly when moving, inserting, or
   1649 deleting columns with the corresponding commands.
   1650 
   1651 The formula can be any algebraic expression understood by the Calc package.
   1652 For details, see the Org mode manual.
   1653 
   1654 This function can also be called from Lisp programs and offers
   1655 additional arguments: EQUATION can be the formula to apply.  If this
   1656 argument is given, the user will not be prompted.
   1657 
   1658 SUPPRESS-ALIGN is used to speed-up recursive calls by by-passing
   1659 unnecessary aligns.
   1660 
   1661 SUPPRESS-CONST suppresses the interpretation of constants in the
   1662 formula, assuming that this has been done already outside the
   1663 function.
   1664 
   1665 SUPPRESS-STORE means the formula should not be stored, either
   1666 because it is already stored, or because it is a modified
   1667 equation that should not overwrite the stored one.
   1668 
   1669 SUPPRESS-ANALYSIS prevents analyzing the table and checking
   1670 location of point.
   1671 
   1672 (fn &optional ARG EQUATION SUPPRESS-ALIGN SUPPRESS-CONST SUPPRESS-STORE SUPPRESS-ANALYSIS)" t)
   1673 (autoload 'org-table-recalculate "org-table" "\
   1674 Recalculate the current table line by applying all stored formulas.
   1675 
   1676 With prefix arg ALL, do this for all lines in the table.
   1677 
   1678 When called with a `\\[universal-argument] \\[universal-argument]' prefix, or if ALL is the symbol `iterate',
   1679 recompute the table until it no longer changes.
   1680 
   1681 If NOALIGN is not nil, do not re-align the table after the computations
   1682 are done.  This is typically used internally to save time, if it is
   1683 known that the table will be realigned a little later anyway.
   1684 
   1685 (fn &optional ALL NOALIGN)" t)
   1686 (autoload 'org-table-iterate "org-table" "\
   1687 Recalculate the table until it does not change anymore.
   1688 The maximum number of iterations is 10, but you can choose a different value
   1689 with the prefix ARG.
   1690 
   1691 (fn &optional ARG)" t)
   1692 (autoload 'org-table-recalculate-buffer-tables "org-table" "\
   1693 Recalculate all tables in the current buffer." t)
   1694 (autoload 'org-table-iterate-buffer-tables "org-table" "\
   1695 Iterate all tables in the buffer, to converge inter-table dependencies." t)
   1696 (autoload 'org-table-edit-formulas "org-table" "\
   1697 Edit the formulas of the current table in a separate buffer." t)
   1698 (autoload 'org-table-toggle-coordinate-overlays "org-table" "\
   1699 Toggle the display of Row/Column numbers in tables." t)
   1700 (autoload 'org-table-toggle-formula-debugger "org-table" "\
   1701 Toggle the formula debugger in tables." t)
   1702 (autoload 'org-table-toggle-column-width "org-table" "\
   1703 Shrink or expand current column in an Org table.
   1704 
   1705 If a width cookie specifies a width W for the column, the first
   1706 W visible characters are displayed.  Otherwise, the column is
   1707 shrunk to a single character.
   1708 
   1709 When point is before the first column or after the last one, ask
   1710 for the columns to shrink or expand, as a list of ranges.
   1711 A column range can be one of the following patterns:
   1712 
   1713   N    column N only
   1714   N-M  every column between N and M (both inclusive)
   1715   N-   every column between N (inclusive) and the last column
   1716   -M   every column between the first one and M (inclusive)
   1717   -    every column
   1718 
   1719 When optional argument ARG is a string, use it as white space
   1720 separated list of column ranges.
   1721 
   1722 When called with `\\[universal-argument]' prefix, call `org-table-shrink', i.e.,
   1723 shrink columns with a width cookie and expand the others.
   1724 
   1725 When called with `\\[universal-argument] \\[universal-argument]' prefix, expand all columns.
   1726 
   1727 (fn &optional ARG)" t)
   1728 (autoload 'org-table-shrink "org-table" "\
   1729 Shrink all columns with a width cookie in the table at point.
   1730 
   1731 Columns without a width cookie are expanded.
   1732 
   1733 Optional arguments BEGIN and END, when non-nil, specify the
   1734 beginning and end position of the current table.
   1735 
   1736 (fn &optional BEGIN END)" t)
   1737 (autoload 'org-table-expand "org-table" "\
   1738 Expand all columns in the table at point.
   1739 Optional arguments BEGIN and END, when non-nil, specify the
   1740 beginning and end position of the current table.
   1741 
   1742 (fn &optional BEGIN END)" t)
   1743 (autoload 'org-table-map-tables "org-table" "\
   1744 Apply function F to the start of all tables in the buffer.
   1745 
   1746 (fn F &optional QUIETLY)")
   1747 (autoload 'org-table-export "org-table" "\
   1748 Export table to a file, with configurable format.
   1749 Such a file can be imported into usual spreadsheet programs.
   1750 
   1751 FILE can be the output file name.  If not given, it will be taken
   1752 from a TABLE_EXPORT_FILE property in the current entry or higher
   1753 up in the hierarchy, or the user will be prompted for a file
   1754 name.  FORMAT can be an export format, of the same kind as it
   1755 used when `-mode' sends a table in a different format.
   1756 
   1757 The command suggests a format depending on TABLE_EXPORT_FORMAT,
   1758 whether it is set locally or up in the hierarchy, then on the
   1759 extension of the given file name, and finally on the variable
   1760 `org-table-export-default-format'.
   1761 
   1762 (fn &optional FILE FORMAT)" t)
   1763 (autoload 'org-table--align-field "org-table" "\
   1764 Format FIELD according to column WIDTH and alignment ALIGN.
   1765 FIELD is a string.  WIDTH is a number.  ALIGN is either \"c\",
   1766 \"l\" or\"r\".
   1767 
   1768 (fn FIELD WIDTH ALIGN)")
   1769 (autoload 'org-table-justify-field-maybe "org-table" "\
   1770 Justify the current field, text to left, number to right.
   1771 Optional argument NEW may specify text to replace the current field content.
   1772 
   1773 (fn &optional NEW)")
   1774 (autoload 'org-table-sort-lines "org-table" "\
   1775 Sort table lines according to the column at point.
   1776 
   1777 The position of point indicates the column to be used for
   1778 sorting, and the range of lines is the range between the nearest
   1779 horizontal separator lines, or the entire table of no such lines
   1780 exist.  If point is before the first column, you will be prompted
   1781 for the sorting column.  If there is an active region, the mark
   1782 specifies the first line and the sorting column, while point
   1783 should be in the last line to be included into the sorting.
   1784 
   1785 The command then prompts for the sorting type which can be
   1786 alphabetically, numerically, or by time (as given in a time stamp
   1787 in the field, or as a HH:MM value).  Sorting in reverse order is
   1788 also possible.
   1789 
   1790 With prefix argument WITH-CASE, alphabetic sorting will be case-sensitive
   1791 if the locale allows for it.
   1792 
   1793 If SORTING-TYPE is specified when this function is called from a Lisp
   1794 program, no prompting will take place.  SORTING-TYPE must be a character,
   1795 any of (?a ?A ?n ?N ?t ?T ?f ?F) where the capital letters indicate that
   1796 sorting should be done in reverse order.
   1797 
   1798 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies
   1799 a function to be called to extract the key.  It must return a value
   1800 that is compatible with COMPARE-FUNC, the function used to compare
   1801 entries.
   1802 
   1803 A non-nil value for INTERACTIVE? is used to signal that this
   1804 function is being called interactively.
   1805 
   1806 (fn &optional WITH-CASE SORTING-TYPE GETKEY-FUNC COMPARE-FUNC INTERACTIVE?)" t)
   1807 (autoload 'org-table-wrap-region "org-table" "\
   1808 Wrap several fields in a column like a paragraph.
   1809 This is useful if you'd like to spread the contents of a field over several
   1810 lines, in order to keep the table compact.
   1811 
   1812 If there is an active region, and both point and mark are in the same column,
   1813 the text in the column is wrapped to minimum width for the given number of
   1814 lines.  Generally, this makes the table more compact.  A prefix ARG may be
   1815 used to change the number of desired lines.  For example, `C-2 \\[org-table-wrap-region]'
   1816 formats the selected text to two lines.  If the region was longer than two
   1817 lines, the remaining lines remain empty.  A negative prefix argument reduces
   1818 the current number of lines by that amount.  The wrapped text is pasted back
   1819 into the table.  If you formatted it to more lines than it was before, fields
   1820 further down in the table get overwritten - so you might need to make space in
   1821 the table first.
   1822 
   1823 If there is no region, the current field is split at the cursor position and
   1824 the text fragment to the right of the cursor is prepended to the field one
   1825 line down.
   1826 
   1827 If there is no region, but you specify a prefix ARG, the current field gets
   1828 blank, and the content is appended to the field above.
   1829 
   1830 (fn ARG)" t)
   1831 (autoload 'org-table-sum "org-table" "\
   1832 Sum numbers in region of current table column.
   1833 The result will be displayed in the echo area, and will be available
   1834 as kill to be inserted with \\[yank].
   1835 
   1836 If there is an active region, it is interpreted as a rectangle and all
   1837 numbers in that rectangle will be summed.  If there is no active
   1838 region and point is located in a table column, sum all numbers in that
   1839 column.
   1840 
   1841 If at least one number looks like a time HH:MM or HH:MM:SS, all other
   1842 numbers are assumed to be times as well (in decimal hours) and the
   1843 numbers are added as such.
   1844 
   1845 If NLAST is a number, only the NLAST fields will actually be summed.
   1846 
   1847 (fn &optional BEG END NLAST)" t)
   1848 (autoload 'org-table-analyze "org-table" "\
   1849 Analyze table at point and store results.
   1850 
   1851 This function sets up the following dynamically scoped variables:
   1852 
   1853  `org-table-column-name-regexp',
   1854  `org-table-column-names',
   1855  `org-table-current-begin-pos',
   1856  `org-table-current-line-types',
   1857  `org-table-current-ncol',
   1858  `org-table-dlines',
   1859  `org-table-hlines',
   1860  `org-table-local-parameters',
   1861  `org-table-named-field-locations'.")
   1862 (autoload 'turn-on-orgtbl "org-table" "\
   1863 Unconditionally turn on `orgtbl-mode'.")
   1864 (autoload 'orgtbl-mode "org-table" "\
   1865 The Org mode table editor as a minor mode for use in other modes.
   1866 
   1867 This is a minor mode.  If called interactively, toggle the
   1868 `OrgTbl mode' mode.  If the prefix argument is positive, enable
   1869 the mode, and if it is zero or negative, disable the mode.
   1870 
   1871 If called from Lisp, toggle the mode if ARG is `toggle'.  Enable
   1872 the mode if ARG is nil, omitted, or is a positive number.
   1873 Disable the mode if ARG is a negative number.
   1874 
   1875 To check whether the minor mode is enabled in the current buffer,
   1876 evaluate `orgtbl-mode'.
   1877 
   1878 The mode's hook is called both when the mode is enabled and when
   1879 it is disabled.
   1880 
   1881 \\{orgtbl-mode-map}
   1882 
   1883 (fn &optional ARG)" t)
   1884 (defvar orgtbl-exp-regexp "^\\([-+]?[0-9][0-9.]*\\)[eE]\\([-+]?[0-9]+\\)$" "\
   1885 Regular expression matching exponentials as produced by calc.")
   1886 (autoload 'org-table-to-lisp "org-table" "\
   1887 Convert the table at point to a Lisp structure.
   1888 
   1889 The structure will be a list.  Each item is either the symbol `hline'
   1890 for a horizontal separator line, or a list of field values as strings.
   1891 The table is taken from the parameter TXT, or from the buffer at point.
   1892 
   1893 (fn &optional TXT)")
   1894 (autoload 'orgtbl-to-generic "org-table" "\
   1895 Convert the `orgtbl-mode' TABLE to some other format.
   1896 
   1897 This generic routine can be used for many standard cases.
   1898 
   1899 TABLE is a list, each entry either the symbol `hline' for
   1900 a horizontal separator line, or a list of fields for that
   1901 line.  PARAMS is a property list of parameters that can
   1902 influence the conversion.
   1903 
   1904 Valid parameters are:
   1905 
   1906 :backend, :raw
   1907 
   1908   Export backend used as a basis to transcode elements of the
   1909   table, when no specific parameter applies to it.  It is also
   1910   used to translate cells contents.  You can prevent this by
   1911   setting :raw property to a non-nil value.
   1912 
   1913 :splice
   1914 
   1915   When non-nil, only convert rows, not the table itself.  This is
   1916   equivalent to setting to the empty string both :tstart
   1917   and :tend, which see.
   1918 
   1919 :skip
   1920 
   1921   When set to an integer N, skip the first N lines of the table.
   1922   Horizontal separation lines do count for this parameter!
   1923 
   1924 :skipcols
   1925 
   1926   List of columns that should be skipped.  If the table has
   1927   a column with calculation marks, that column is automatically
   1928   discarded beforehand.
   1929 
   1930 :hline
   1931 
   1932   String to be inserted on horizontal separation lines.  May be
   1933   nil to ignore these lines altogether.
   1934 
   1935 :sep
   1936 
   1937   Separator between two fields, as a string.
   1938 
   1939 Each in the following group may be either a string or a function
   1940 of no arguments returning a string:
   1941 
   1942 :tstart, :tend
   1943 
   1944   Strings to start and end the table.  Ignored when :splice is t.
   1945 
   1946 :lstart, :lend
   1947 
   1948   Strings to start and end a new table line.
   1949 
   1950 :llstart, :llend
   1951 
   1952   Strings to start and end the last table line.  Default,
   1953   respectively, to :lstart and :lend.
   1954 
   1955 Each in the following group may be a string or a function of one
   1956 argument (either the cells in the current row, as a list of
   1957 strings, or the current cell) returning a string:
   1958 
   1959 :lfmt
   1960 
   1961   Format string for an entire row, with enough %s to capture all
   1962   fields.  When non-nil, :lstart, :lend, and :sep are ignored.
   1963 
   1964 :llfmt
   1965 
   1966   Format for the entire last line, defaults to :lfmt.
   1967 
   1968 :fmt
   1969 
   1970   A format to be used to wrap the field, should contain %s for
   1971   the original field value.  For example, to wrap everything in
   1972   dollars, you could use :fmt \"$%s$\".  This may also be
   1973   a property list with column numbers and format strings, or
   1974   functions, e.g.,
   1975 
   1976     (:fmt (2 \"$%s$\" 4 (lambda (c) (format \"$%s$\" c))))
   1977 
   1978   The format is ignored for empty fields.  Use :raw t with non-nil
   1979   :backend option to force formatting empty fields.
   1980 
   1981 :hlstart :hllstart :hlend :hllend :hsep :hlfmt :hllfmt :hfmt
   1982 
   1983  Same as above, specific for the header lines in the table.
   1984  All lines before the first hline are treated as header.  If
   1985  any of these is not present, the data line value is used.
   1986 
   1987 This may be either a string or a function of two arguments:
   1988 
   1989 :efmt
   1990 
   1991   Use this format to print numbers with exponential.  The format
   1992   should have %s twice for inserting mantissa and exponent, for
   1993   example \"%s\\\\times10^{%s}\".  This may also be a property
   1994   list with column numbers and format strings or functions.
   1995   :fmt will still be applied after :efmt.
   1996 
   1997 (fn TABLE PARAMS)")
   1998 (autoload 'orgtbl-to-tsv "org-table" "\
   1999 Convert the `orgtbl-mode' TABLE to TAB separated material.
   2000 
   2001 (fn TABLE PARAMS)")
   2002 (autoload 'orgtbl-to-csv "org-table" "\
   2003 Convert the `orgtbl-mode' TABLE to CSV material.
   2004 This does take care of the proper quoting of fields with comma or quotes.
   2005 
   2006 (fn TABLE PARAMS)")
   2007 (autoload 'orgtbl-to-latex "org-table" "\
   2008 Convert the `orgtbl-mode' TABLE to LaTeX.
   2009 
   2010 TABLE is a list, each entry either the symbol `hline' for
   2011 a horizontal separator line, or a list of fields for that line.
   2012 PARAMS is a property list of parameters that can influence the
   2013 conversion.  All parameters from `orgtbl-to-generic' are
   2014 supported.  It is also possible to use the following ones:
   2015 
   2016 :booktabs
   2017 
   2018   When non-nil, use formal \"booktabs\" style.
   2019 
   2020 :environment
   2021 
   2022   Specify environment to use, as a string.  If you use
   2023   \"longtable\", you may also want to specify :language property,
   2024   as a string, to get proper continuation strings.
   2025 
   2026 (fn TABLE PARAMS)")
   2027 (autoload 'orgtbl-to-html "org-table" "\
   2028 Convert the `orgtbl-mode' TABLE to HTML.
   2029 
   2030 TABLE is a list, each entry either the symbol `hline' for
   2031 a horizontal separator line, or a list of fields for that line.
   2032 PARAMS is a property list of parameters that can influence the
   2033 conversion.  All parameters from `orgtbl-to-generic' are
   2034 supported.  It is also possible to use the following one:
   2035 
   2036 :attributes
   2037 
   2038   Attributes and values, as a plist, which will be used in
   2039   <table> tag.
   2040 
   2041 (fn TABLE PARAMS)")
   2042 (autoload 'orgtbl-to-texinfo "org-table" "\
   2043 Convert the `orgtbl-mode' TABLE to Texinfo.
   2044 
   2045 TABLE is a list, each entry either the symbol `hline' for
   2046 a horizontal separator line, or a list of fields for that line.
   2047 PARAMS is a property list of parameters that can influence the
   2048 conversion.  All parameters from `orgtbl-to-generic' are
   2049 supported.  It is also possible to use the following one:
   2050 
   2051 :columns
   2052 
   2053   Column widths, as a string.  When providing column fractions,
   2054   \"@columnfractions\" command can be omitted.
   2055 
   2056 (fn TABLE PARAMS)")
   2057 (autoload 'orgtbl-to-orgtbl "org-table" "\
   2058 Convert the `orgtbl-mode' TABLE into another `orgtbl-mode' table.
   2059 
   2060 TABLE is a list, each entry either the symbol `hline' for
   2061 a horizontal separator line, or a list of fields for that line.
   2062 PARAMS is a property list of parameters that can influence the
   2063 conversion.  All parameters from `orgtbl-to-generic' are
   2064 supported.
   2065 
   2066 Useful when slicing one table into many.  The :hline, :sep,
   2067 :lstart, and :lend provide orgtbl framing.  :tstart and :tend can
   2068 be set to provide ORGTBL directives for the generated table.
   2069 
   2070 (fn TABLE PARAMS)")
   2071 (autoload 'orgtbl-ascii-plot "org-table" "\
   2072 Draw an ASCII bar plot in a column.
   2073 
   2074 With cursor in a column containing numerical values, this function
   2075 will draw a plot in a new column.
   2076 
   2077 ASK, if given, is a numeric prefix to override the default 12
   2078 characters width of the plot.  ASK may also be the `\\[universal-argument]' prefix,
   2079 which will prompt for the width.
   2080 
   2081 (fn &optional ASK)" t)
   2082 
   2083 
   2084 ;;; Generated autoloads from org-timer.el
   2085 
   2086 (autoload 'org-timer-start "org-timer" "\
   2087 Set the starting time for the relative timer to now.
   2088 When called with prefix argument OFFSET, prompt the user for an offset time,
   2089 with the default taken from a timer stamp at point, if any.
   2090 If OFFSET is a string or an integer, it is directly taken to be the offset
   2091 without user interaction.
   2092 When called with a double prefix arg, all timer strings in the active
   2093 region will be shifted by a specific amount.  You will be prompted for
   2094 the amount, with the default to make the first timer string in
   2095 the region 0:00:00.
   2096 
   2097 (fn &optional OFFSET)" t)
   2098 (autoload 'org-timer-pause-or-continue "org-timer" "\
   2099 Pause or continue the relative or countdown timer.
   2100 With prefix arg STOP, stop it entirely.
   2101 
   2102 (fn &optional STOP)" t)
   2103 (autoload 'org-timer-stop "org-timer" "\
   2104 Stop the relative or countdown timer." t)
   2105 (autoload 'org-timer "org-timer" "\
   2106 Insert a H:MM:SS string from the timer into the buffer.
   2107 The first time this command is used, the timer is started.
   2108 
   2109 When used with a `\\[universal-argument]' prefix RESTART, force
   2110 restarting the timer.
   2111 
   2112 When used with a `\\[universal-argument] \\[universal-argument]' prefix
   2113 RESTART, change all the timer strings in the region by a fixed amount.
   2114 This can be used to re-calibrate a timer that was not started at the
   2115 correct moment.
   2116 
   2117 If NO-INSERT is non-nil, return the string instead of inserting it in
   2118 the buffer.
   2119 
   2120 (fn &optional RESTART NO-INSERT)" t)
   2121 (autoload 'org-timer-change-times-in-region "org-timer" "\
   2122 Change all h:mm:ss time in region BEG..END by a DELTA.
   2123 
   2124 (fn BEG END DELTA)" t)
   2125 (autoload 'org-timer-item "org-timer" "\
   2126 Insert a description-type item with the current timer value.
   2127 Prefix argument ARG is passed to `org-timer'.
   2128 
   2129 (fn &optional ARG)" t)
   2130 (autoload 'org-timer-set-timer "org-timer" "\
   2131 Prompt for a duration in minutes or hh:mm:ss and set a timer.
   2132 
   2133 If `org-timer-default-timer' is not \"0\", suggest this value as
   2134 the default duration for the timer.  If a timer is already set,
   2135 prompt the user if she wants to replace it.
   2136 
   2137 Called with a numeric prefix argument OPT, use this numeric value as
   2138 the duration of the timer in minutes.
   2139 
   2140 Called with a \\[universal-argument] prefix argument OPT, use
   2141 `org-timer-default-timer' without prompting the user for a duration.
   2142 
   2143 With two \\[universal-argument] prefix arguments OPT, use
   2144 `org-timer-default-timer' without prompting the user for a duration
   2145 and automatically replace any running timer.
   2146 
   2147 By default, the timer duration will be set to the number of
   2148 minutes in the Effort property, if any.  You can ignore this by
   2149 using three \\[universal-argument] prefix arguments.
   2150 
   2151 (fn &optional OPT)" t)
   2152 
   2153 
   2154 ;;; Generated autoloads from ox.el
   2155 
   2156 (autoload 'org-export-get-backend "ox" "\
   2157 Return export backend named after NAME.
   2158 NAME is a symbol.  Return nil if no such backend is found.
   2159 
   2160 (fn NAME)")
   2161 (autoload 'org-export-derived-backend-p "ox" "\
   2162 Non-nil if BACKEND is derived from one of BACKENDS.
   2163 BACKEND is an export backend, as returned by, e.g.,
   2164 `org-export-create-backend', or a symbol referring to
   2165 a registered backend.  BACKENDS is constituted of symbols.
   2166 
   2167 (fn BACKEND &rest BACKENDS)")
   2168 (autoload 'org-export-get-environment "ox" "\
   2169 Collect export options from the current buffer.
   2170 
   2171 Optional argument BACKEND is an export backend, as returned by
   2172 `org-export-create-backend'.
   2173 
   2174 When optional argument SUBTREEP is non-nil, assume the export is
   2175 done against the current sub-tree.
   2176 
   2177 Third optional argument EXT-PLIST is a property list with
   2178 external parameters overriding Org default settings, but still
   2179 inferior to file-local settings.
   2180 
   2181 (fn &optional BACKEND SUBTREEP EXT-PLIST)")
   2182 (autoload 'org-export-data "ox" "\
   2183 Convert DATA into current backend format.
   2184 
   2185 DATA is a parse tree, an element or an object or a secondary
   2186 string.  INFO is a plist holding export options.
   2187 
   2188 The `:filter-parse-tree' filters are not applied.
   2189 
   2190 Return a string.
   2191 
   2192 (fn DATA INFO)")
   2193 (autoload 'org-export-as "ox" "\
   2194 Transcode current Org buffer into BACKEND code.
   2195 
   2196 See info node `(org)Advanced Export Configuration' for the details of
   2197 the transcoding process.
   2198 
   2199 BACKEND is either an export backend, as returned by, e.g.,
   2200 `org-export-create-backend', or a symbol referring to
   2201 a registered backend.
   2202 
   2203 If narrowing is active in the current buffer, only transcode its
   2204 narrowed part.
   2205 
   2206 If a region is active, transcode that region.
   2207 
   2208 When optional argument SUBTREEP is non-nil, transcode the
   2209 sub-tree at point, extracting information from the headline
   2210 properties first.
   2211 
   2212 When optional argument VISIBLE-ONLY is non-nil, don't export
   2213 contents of hidden elements.
   2214 
   2215 When optional argument BODY-ONLY is non-nil, only return body
   2216 code, without surrounding template.
   2217 
   2218 Optional argument EXT-PLIST, when provided, is a property list
   2219 with external parameters overriding Org default settings, but
   2220 still inferior to file-local settings.
   2221 
   2222 Return code as a string.
   2223 
   2224 (fn BACKEND &optional SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)")
   2225 (autoload 'org-export-string-as "ox" "\
   2226 Transcode STRING into BACKEND code.
   2227 
   2228 BACKEND is either an export backend, as returned by, e.g.,
   2229 `org-export-create-backend', or a symbol referring to
   2230 a registered backend.
   2231 
   2232 When optional argument BODY-ONLY is non-nil, only return body
   2233 code, without preamble nor postamble.
   2234 
   2235 Optional argument EXT-PLIST, when provided, is a property list
   2236 with external parameters overriding Org default settings, but
   2237 still inferior to file-local settings.
   2238 
   2239 Return code as a string.
   2240 
   2241 (fn STRING BACKEND &optional BODY-ONLY EXT-PLIST)")
   2242 (autoload 'org-export-replace-region-by "ox" "\
   2243 Replace the active region by its export to BACKEND.
   2244 BACKEND is either an export backend, as returned by, e.g.,
   2245 `org-export-create-backend', or a symbol referring to
   2246 a registered backend.
   2247 
   2248 (fn BACKEND)")
   2249 (autoload 'org-export-insert-default-template "ox" "\
   2250 Insert all export keywords with default values at beginning of line.
   2251 
   2252 BACKEND is a symbol referring to the name of a registered export
   2253 backend, for which specific export options should be added to
   2254 the template, or `default' for default template.  When it is nil,
   2255 the user will be prompted for a category.
   2256 
   2257 If SUBTREEP is non-nil, export configuration will be set up
   2258 locally for the subtree through node properties.
   2259 
   2260 (fn &optional BACKEND SUBTREEP)" t)
   2261 (autoload 'org-export-raw-string "ox" "\
   2262 Return a raw object containing string S.
   2263 A raw string is exported as-is, with no additional processing
   2264 from the export backend.
   2265 
   2266 (fn S)")
   2267 (autoload 'org-export-to-buffer "ox" "\
   2268 Call `org-export-as' with output to a specified buffer.
   2269 
   2270 BACKEND is either an export backend, as returned by, e.g.,
   2271 `org-export-create-backend', or a symbol referring to
   2272 a registered backend.
   2273 
   2274 BUFFER is the name of the output buffer.  If it already exists,
   2275 it will be erased first, otherwise, it will be created.
   2276 
   2277 A non-nil optional argument ASYNC means the process should happen
   2278 asynchronously.  The resulting buffer should then be accessible
   2279 through the `org-export-stack' interface.  When ASYNC is nil, the
   2280 buffer is displayed if `org-export-show-temporary-export-buffer'
   2281 is non-nil.
   2282 
   2283 Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
   2284 EXT-PLIST are similar to those used in `org-export-as', which
   2285 see.
   2286 
   2287 Optional argument POST-PROCESS is a function which should accept
   2288 no argument.  It is always called within the current process,
   2289 from BUFFER, with point at its beginning.  Export backends can
   2290 use it to set a major mode there, e.g.,
   2291 
   2292   (defun org-latex-export-as-latex
   2293     (&optional async subtreep visible-only body-only ext-plist)
   2294     (interactive)
   2295     (org-export-to-buffer \\='latex \"*Org LATEX Export*\"
   2296       async subtreep visible-only body-only ext-plist
   2297       (major-mode-remap \\='latex-mode)))
   2298 
   2299 When expressed as an anonymous function, using `lambda',
   2300 POST-PROCESS needs to be quoted.
   2301 
   2302 This function returns BUFFER.
   2303 
   2304 (fn BACKEND BUFFER &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST POST-PROCESS)")
   2305 (function-put 'org-export-to-buffer 'lisp-indent-function 2)
   2306 (autoload 'org-export-to-file "ox" "\
   2307 Call `org-export-as' with output to a specified file.
   2308 
   2309 BACKEND is either an export backend, as returned by, e.g.,
   2310 `org-export-create-backend', or a symbol referring to
   2311 a registered backend.  FILE is the name of the output file, as
   2312 a string.
   2313 
   2314 A non-nil optional argument ASYNC means the process should happen
   2315 asynchronously.  The resulting buffer will then be accessible
   2316 through the `org-export-stack' interface.
   2317 
   2318 Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
   2319 EXT-PLIST are similar to those used in `org-export-as', which
   2320 see.
   2321 
   2322 Optional argument POST-PROCESS is called with FILE as its
   2323 argument and happens asynchronously when ASYNC is non-nil.  It
   2324 has to return a file name, or nil.  Export backends can use this
   2325 to send the output file through additional processing, e.g,
   2326 
   2327   (defun org-latex-export-to-latex
   2328     (&optional async subtreep visible-only body-only ext-plist)
   2329     (interactive)
   2330     (let ((outfile (org-export-output-file-name \".tex\" subtreep)))
   2331       (org-export-to-file \\='latex outfile
   2332         async subtreep visible-only body-only ext-plist
   2333         #\\='org-latex-compile)))
   2334 
   2335 When expressed as an anonymous function, using `lambda',
   2336 POST-PROCESS needs to be quoted.
   2337 
   2338 The function returns either a file name returned by POST-PROCESS,
   2339 or FILE.
   2340 
   2341 (fn BACKEND FILE &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST POST-PROCESS)")
   2342 (function-put 'org-export-to-file 'lisp-indent-function 2)
   2343 (autoload 'org-export-dispatch "ox" "\
   2344 Export dispatcher for Org mode.
   2345 
   2346 It provides an access to common export related tasks in a buffer.
   2347 Its interface comes in two flavors: standard and expert.
   2348 
   2349 While both share the same set of bindings, only the former
   2350 displays the valid keys associations in a dedicated buffer.
   2351 Scrolling (resp. line-wise motion) in this buffer is done with
   2352 SPC and DEL (resp. C-n and C-p) keys.
   2353 
   2354 Set variable `org-export-dispatch-use-expert-ui' to switch to one
   2355 flavor or the other.
   2356 
   2357 When ARG is `\\[universal-argument]', repeat the last export action, with the same
   2358 set of options used back then, on the current buffer.
   2359 
   2360 When ARG is `\\[universal-argument] \\[universal-argument]', display the asynchronous export stack.
   2361 
   2362 (fn &optional ARG)" t)
   2363 
   2364 
   2365 ;;; Generated autoloads from ox-ascii.el
   2366 
   2367 (autoload 'org-ascii-convert-region-to-ascii "ox-ascii" "\
   2368 Assume region has Org syntax, and convert it to plain ASCII." t)
   2369 (autoload 'org-ascii-convert-region-to-utf8 "ox-ascii" "\
   2370 Assume region has Org syntax, and convert it to UTF-8." t)
   2371 (autoload 'org-ascii-export-as-ascii "ox-ascii" "\
   2372 Export current buffer to a text buffer.
   2373 
   2374 If narrowing is active in the current buffer, only export its
   2375 narrowed part.
   2376 
   2377 If a region is active, export that region.
   2378 
   2379 A non-nil optional argument ASYNC means the process should happen
   2380 asynchronously.  The resulting buffer should be accessible
   2381 through the `org-export-stack' interface.
   2382 
   2383 When optional argument SUBTREEP is non-nil, export the sub-tree
   2384 at point, extracting information from the headline properties
   2385 first.
   2386 
   2387 When optional argument VISIBLE-ONLY is non-nil, don't export
   2388 contents of hidden elements.
   2389 
   2390 When optional argument BODY-ONLY is non-nil, strip title and
   2391 table of contents from output.
   2392 
   2393 EXT-PLIST, when provided, is a property list with external
   2394 parameters overriding Org default settings, but still inferior to
   2395 file-local settings.
   2396 
   2397 Export is done in a buffer named \"*Org ASCII Export*\", which
   2398 will be displayed when `org-export-show-temporary-export-buffer'
   2399 is non-nil.
   2400 
   2401 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
   2402 (autoload 'org-ascii-export-to-ascii "ox-ascii" "\
   2403 Export current buffer to a text file.
   2404 
   2405 If narrowing is active in the current buffer, only export its
   2406 narrowed part.
   2407 
   2408 If a region is active, export that region.
   2409 
   2410 A non-nil optional argument ASYNC means the process should happen
   2411 asynchronously.  The resulting file should be accessible through
   2412 the `org-export-stack' interface.
   2413 
   2414 When optional argument SUBTREEP is non-nil, export the sub-tree
   2415 at point, extracting information from the headline properties
   2416 first.
   2417 
   2418 When optional argument VISIBLE-ONLY is non-nil, don't export
   2419 contents of hidden elements.
   2420 
   2421 When optional argument BODY-ONLY is non-nil, strip title and
   2422 table of contents from output.
   2423 
   2424 EXT-PLIST, when provided, is a property list with external
   2425 parameters overriding Org default settings, but still inferior to
   2426 file-local settings.
   2427 
   2428 Return output file's name.
   2429 
   2430 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
   2431 (autoload 'org-ascii-publish-to-ascii "ox-ascii" "\
   2432 Publish an Org file to ASCII.
   2433 
   2434 FILENAME is the filename of the Org file to be published.  PLIST
   2435 is the property list for the given project.  PUB-DIR is the
   2436 publishing directory.
   2437 
   2438 Return output file name.
   2439 
   2440 (fn PLIST FILENAME PUB-DIR)")
   2441 (autoload 'org-ascii-publish-to-latin1 "ox-ascii" "\
   2442 Publish an Org file to Latin-1.
   2443 
   2444 FILENAME is the filename of the Org file to be published.  PLIST
   2445 is the property list for the given project.  PUB-DIR is the
   2446 publishing directory.
   2447 
   2448 Return output file name.
   2449 
   2450 (fn PLIST FILENAME PUB-DIR)")
   2451 (autoload 'org-ascii-publish-to-utf8 "ox-ascii" "\
   2452 Publish an org file to UTF-8.
   2453 
   2454 FILENAME is the filename of the Org file to be published.  PLIST
   2455 is the property list for the given project.  PUB-DIR is the
   2456 publishing directory.
   2457 
   2458 Return output file name.
   2459 
   2460 (fn PLIST FILENAME PUB-DIR)")
   2461 
   2462 
   2463 ;;; Generated autoloads from ox-beamer.el
   2464 
   2465 (autoload 'org-beamer-mode "ox-beamer" "\
   2466 Support for editing Beamer oriented Org mode files.
   2467 
   2468 This is a minor mode.  If called interactively, toggle the
   2469 `Org-Beamer mode' mode.  If the prefix argument is positive,
   2470 enable the mode, and if it is zero or negative, disable the mode.
   2471 
   2472 If called from Lisp, toggle the mode if ARG is `toggle'.  Enable
   2473 the mode if ARG is nil, omitted, or is a positive number.
   2474 Disable the mode if ARG is a negative number.
   2475 
   2476 To check whether the minor mode is enabled in the current buffer,
   2477 evaluate `org-beamer-mode'.
   2478 
   2479 The mode's hook is called both when the mode is enabled and when
   2480 it is disabled.
   2481 
   2482 (fn &optional ARG)" t)
   2483 (autoload 'org-beamer-export-as-latex "ox-beamer" "\
   2484 Export current buffer as a Beamer buffer.
   2485 
   2486 If narrowing is active in the current buffer, only export its
   2487 narrowed part.
   2488 
   2489 If a region is active, export that region.
   2490 
   2491 A non-nil optional argument ASYNC means the process should happen
   2492 asynchronously.  The resulting buffer should be accessible
   2493 through the `org-export-stack' interface.
   2494 
   2495 When optional argument SUBTREEP is non-nil, export the sub-tree
   2496 at point, extracting information from the headline properties
   2497 first.
   2498 
   2499 When optional argument VISIBLE-ONLY is non-nil, don't export
   2500 contents of hidden elements.
   2501 
   2502 When optional argument BODY-ONLY is non-nil, only write code
   2503 between \"\\begin{document}\" and \"\\end{document}\".
   2504 
   2505 EXT-PLIST, when provided, is a property list with external
   2506 parameters overriding Org default settings, but still inferior to
   2507 file-local settings.
   2508 
   2509 Export is done in a buffer named \"*Org BEAMER Export*\", which
   2510 will be displayed when `org-export-show-temporary-export-buffer'
   2511 is non-nil.
   2512 
   2513 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
   2514 (autoload 'org-beamer-export-to-latex "ox-beamer" "\
   2515 Export current buffer as a Beamer presentation (tex).
   2516 
   2517 If narrowing is active in the current buffer, only export its
   2518 narrowed part.
   2519 
   2520 If a region is active, export that region.
   2521 
   2522 A non-nil optional argument ASYNC means the process should happen
   2523 asynchronously.  The resulting file should be accessible through
   2524 the `org-export-stack' interface.
   2525 
   2526 When optional argument SUBTREEP is non-nil, export the sub-tree
   2527 at point, extracting information from the headline properties
   2528 first.
   2529 
   2530 When optional argument VISIBLE-ONLY is non-nil, don't export
   2531 contents of hidden elements.
   2532 
   2533 When optional argument BODY-ONLY is non-nil, only write code
   2534 between \"\\begin{document}\" and \"\\end{document}\".
   2535 
   2536 EXT-PLIST, when provided, is a property list with external
   2537 parameters overriding Org default settings, but still inferior to
   2538 file-local settings.
   2539 
   2540 Return output file's name.
   2541 
   2542 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
   2543 (autoload 'org-beamer-export-to-pdf "ox-beamer" "\
   2544 Export current buffer as a Beamer presentation (PDF).
   2545 
   2546 If narrowing is active in the current buffer, only export its
   2547 narrowed part.
   2548 
   2549 If a region is active, export that region.
   2550 
   2551 A non-nil optional argument ASYNC means the process should happen
   2552 asynchronously.  The resulting file should be accessible through
   2553 the `org-export-stack' interface.
   2554 
   2555 When optional argument SUBTREEP is non-nil, export the sub-tree
   2556 at point, extracting information from the headline properties
   2557 first.
   2558 
   2559 When optional argument VISIBLE-ONLY is non-nil, don't export
   2560 contents of hidden elements.
   2561 
   2562 When optional argument BODY-ONLY is non-nil, only write code
   2563 between \"\\begin{document}\" and \"\\end{document}\".
   2564 
   2565 EXT-PLIST, when provided, is a property list with external
   2566 parameters overriding Org default settings, but still inferior to
   2567 file-local settings.
   2568 
   2569 Return PDF file's name.
   2570 
   2571 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
   2572 (autoload 'org-beamer-select-environment "ox-beamer" "\
   2573 Select the environment to be used by beamer for this entry.
   2574 While this uses (for convenience) a tag selection interface, the
   2575 result of this command will be that the BEAMER_env *property* of
   2576 the entry is set.
   2577 
   2578 In addition to this, the command will also set a tag as a visual
   2579 aid, but the tag does not have any semantic meaning." t)
   2580 (autoload 'org-beamer-publish-to-latex "ox-beamer" "\
   2581 Publish an Org file to a Beamer presentation (LaTeX).
   2582 
   2583 FILENAME is the filename of the Org file to be published.  PLIST
   2584 is the property list for the given project.  PUB-DIR is the
   2585 publishing directory.
   2586 
   2587 Return output file name.
   2588 
   2589 (fn PLIST FILENAME PUB-DIR)")
   2590 (autoload 'org-beamer-publish-to-pdf "ox-beamer" "\
   2591 Publish an Org file to a Beamer presentation (PDF, via LaTeX).
   2592 
   2593 FILENAME is the filename of the Org file to be published.  PLIST
   2594 is the property list for the given project.  PUB-DIR is the
   2595 publishing directory.
   2596 
   2597 Return output file name.
   2598 
   2599 (fn PLIST FILENAME PUB-DIR)")
   2600 
   2601 
   2602 ;;; Generated autoloads from ox-html.el
   2603 
   2604 (put 'org-html-head-include-default-style 'safe-local-variable 'booleanp)
   2605 (put 'org-html-head 'safe-local-variable 'stringp)
   2606 (put 'org-html-head-extra 'safe-local-variable 'stringp)
   2607 (autoload 'org-html-htmlize-generate-css "ox-html" "\
   2608 Create the CSS for all font definitions in the current Emacs session.
   2609 Use this to create face definitions in your CSS style file that can then
   2610 be used by code snippets transformed by htmlize.
   2611 This command just produces a buffer that contains class definitions for all
   2612 faces used in the current Emacs session.  You can copy and paste the ones you
   2613 need into your CSS file.
   2614 
   2615 The face definitions are prepended with
   2616 `org-html-htmlize-font-prefix'.
   2617 
   2618 If you then set `org-html-htmlize-output-type' to `css', calls
   2619 to the function `org-html-htmlize-region-for-paste' will
   2620 produce code that uses these same face definitions." t)
   2621 (autoload 'org-html-export-as-html "ox-html" "\
   2622 Export current buffer to an HTML buffer.
   2623 
   2624 If narrowing is active in the current buffer, only export its
   2625 narrowed part.
   2626 
   2627 If a region is active, export that region.
   2628 
   2629 A non-nil optional argument ASYNC means the process should happen
   2630 asynchronously.  The resulting buffer should be accessible
   2631 through the `org-export-stack' interface.
   2632 
   2633 When optional argument SUBTREEP is non-nil, export the sub-tree
   2634 at point, extracting information from the headline properties
   2635 first.
   2636 
   2637 When optional argument VISIBLE-ONLY is non-nil, don't export
   2638 contents of hidden elements.
   2639 
   2640 When optional argument BODY-ONLY is non-nil, only write code
   2641 between \"<body>\" and \"</body>\" tags.
   2642 
   2643 EXT-PLIST, when provided, is a property list with external
   2644 parameters overriding Org default settings, but still inferior to
   2645 file-local settings.
   2646 
   2647 Export is done in a buffer named \"*Org HTML Export*\", which
   2648 will be displayed when `org-export-show-temporary-export-buffer'
   2649 is non-nil.
   2650 
   2651 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
   2652 (autoload 'org-html-convert-region-to-html "ox-html" "\
   2653 Assume the current region has Org syntax, and convert it to HTML.
   2654 This can be used in any buffer.  For example, you can write an
   2655 itemized list in Org syntax in an HTML buffer and use this command
   2656 to convert it." t)
   2657 (autoload 'org-html-export-to-html "ox-html" "\
   2658 Export current buffer to a HTML file.
   2659 
   2660 If narrowing is active in the current buffer, only export its
   2661 narrowed part.
   2662 
   2663 If a region is active, export that region.
   2664 
   2665 A non-nil optional argument ASYNC means the process should happen
   2666 asynchronously.  The resulting file should be accessible through
   2667 the `org-export-stack' interface.
   2668 
   2669 When optional argument SUBTREEP is non-nil, export the sub-tree
   2670 at point, extracting information from the headline properties
   2671 first.
   2672 
   2673 When optional argument VISIBLE-ONLY is non-nil, don't export
   2674 contents of hidden elements.
   2675 
   2676 When optional argument BODY-ONLY is non-nil, only write code
   2677 between \"<body>\" and \"</body>\" tags.
   2678 
   2679 EXT-PLIST, when provided, is a property list with external
   2680 parameters overriding Org default settings, but still inferior to
   2681 file-local settings.
   2682 
   2683 Return output file's name.
   2684 
   2685 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
   2686 (autoload 'org-html-publish-to-html "ox-html" "\
   2687 Publish an org file to HTML.
   2688 
   2689 FILENAME is the filename of the Org file to be published.  PLIST
   2690 is the property list for the given project.  PUB-DIR is the
   2691 publishing directory.
   2692 
   2693 Return output file name.
   2694 
   2695 (fn PLIST FILENAME PUB-DIR)")
   2696 
   2697 
   2698 ;;; Generated autoloads from ox-icalendar.el
   2699 
   2700 (autoload 'org-icalendar-export-to-ics "ox-icalendar" "\
   2701 Export current buffer to an iCalendar file.
   2702 
   2703 If narrowing is active in the current buffer, only export its
   2704 narrowed part.
   2705 
   2706 If a region is active, export that region.
   2707 
   2708 A non-nil optional argument ASYNC means the process should happen
   2709 asynchronously.  The resulting file should be accessible through
   2710 the `org-export-stack' interface.
   2711 
   2712 When optional argument SUBTREEP is non-nil, export the sub-tree
   2713 at point, extracting information from the headline properties
   2714 first.
   2715 
   2716 When optional argument VISIBLE-ONLY is non-nil, don't export
   2717 contents of hidden elements.
   2718 
   2719 When optional argument BODY-ONLY is non-nil, only write code
   2720 between \"BEGIN:VCALENDAR\" and \"END:VCALENDAR\".
   2721 
   2722 Return ICS file name.
   2723 
   2724 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY)" t)
   2725 (autoload 'org-icalendar-export-agenda-files "ox-icalendar" "\
   2726 Export all agenda files to iCalendar files.
   2727 When optional argument ASYNC is non-nil, export happens in an
   2728 external process.
   2729 
   2730 (fn &optional ASYNC)" t)
   2731 (autoload 'org-icalendar-combine-agenda-files "ox-icalendar" "\
   2732 Combine all agenda files into a single iCalendar file.
   2733 
   2734 A non-nil optional argument ASYNC means the process should happen
   2735 asynchronously.  The resulting file should be accessible through
   2736 the `org-export-stack' interface.
   2737 
   2738 The file is stored under the name chosen in
   2739 `org-icalendar-combined-agenda-file'.
   2740 
   2741 (fn &optional ASYNC)" t)
   2742 
   2743 
   2744 ;;; Generated autoloads from ox-latex.el
   2745 
   2746 (autoload 'org-latex-make-preamble "ox-latex" "\
   2747 Return a formatted LaTeX preamble.
   2748 INFO is a plist used as a communication channel.  Optional
   2749 argument TEMPLATE, when non-nil, is the header template string,
   2750 as expected by `org-splice-latex-header'.  When SNIPPET? is
   2751 non-nil, only includes packages relevant to image generation, as
   2752 specified in `org-latex-default-packages-alist' or
   2753 `org-latex-packages-alist'.
   2754 
   2755 (fn INFO &optional TEMPLATE SNIPPET?)")
   2756 (autoload 'org-latex-export-as-latex "ox-latex" "\
   2757 Export current buffer as a LaTeX buffer.
   2758 
   2759 If narrowing is active in the current buffer, only export its
   2760 narrowed part.
   2761 
   2762 If a region is active, export that region.
   2763 
   2764 A non-nil optional argument ASYNC means the process should happen
   2765 asynchronously.  The resulting buffer should be accessible
   2766 through the `org-export-stack' interface.
   2767 
   2768 When optional argument SUBTREEP is non-nil, export the sub-tree
   2769 at point, extracting information from the headline properties
   2770 first.
   2771 
   2772 When optional argument VISIBLE-ONLY is non-nil, don't export
   2773 contents of hidden elements.
   2774 
   2775 When optional argument BODY-ONLY is non-nil, only write code
   2776 between \"\\begin{document}\" and \"\\end{document}\".
   2777 
   2778 EXT-PLIST, when provided, is a property list with external
   2779 parameters overriding Org default settings, but still inferior to
   2780 file-local settings.
   2781 
   2782 Export is done in a buffer named \"*Org LATEX Export*\", which
   2783 will be displayed when `org-export-show-temporary-export-buffer'
   2784 is non-nil.
   2785 
   2786 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
   2787 (autoload 'org-latex-convert-region-to-latex "ox-latex" "\
   2788 Assume the current region has Org syntax, and convert it to LaTeX.
   2789 This can be used in any buffer.  For example, you can write an
   2790 itemized list in Org syntax in an LaTeX buffer and use this
   2791 command to convert it." t)
   2792 (autoload 'org-latex-export-to-latex "ox-latex" "\
   2793 Export current buffer to a LaTeX file.
   2794 
   2795 If narrowing is active in the current buffer, only export its
   2796 narrowed part.
   2797 
   2798 If a region is active, export that region.
   2799 
   2800 A non-nil optional argument ASYNC means the process should happen
   2801 asynchronously.  The resulting file should be accessible through
   2802 the `org-export-stack' interface.
   2803 
   2804 When optional argument SUBTREEP is non-nil, export the sub-tree
   2805 at point, extracting information from the headline properties
   2806 first.
   2807 
   2808 When optional argument VISIBLE-ONLY is non-nil, don't export
   2809 contents of hidden elements.
   2810 
   2811 When optional argument BODY-ONLY is non-nil, only write code
   2812 between \"\\begin{document}\" and \"\\end{document}\".
   2813 
   2814 EXT-PLIST, when provided, is a property list with external
   2815 parameters overriding Org default settings, but still inferior to
   2816 file-local settings.
   2817 
   2818 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
   2819 (autoload 'org-latex-export-to-pdf "ox-latex" "\
   2820 Export current buffer to LaTeX then process through to PDF.
   2821 
   2822 If narrowing is active in the current buffer, only export its
   2823 narrowed part.
   2824 
   2825 If a region is active, export that region.
   2826 
   2827 A non-nil optional argument ASYNC means the process should happen
   2828 asynchronously.  The resulting file should be accessible through
   2829 the `org-export-stack' interface.
   2830 
   2831 When optional argument SUBTREEP is non-nil, export the sub-tree
   2832 at point, extracting information from the headline properties
   2833 first.
   2834 
   2835 When optional argument VISIBLE-ONLY is non-nil, don't export
   2836 contents of hidden elements.
   2837 
   2838 When optional argument BODY-ONLY is non-nil, only write code
   2839 between \"\\begin{document}\" and \"\\end{document}\".
   2840 
   2841 EXT-PLIST, when provided, is a property list with external
   2842 parameters overriding Org default settings, but still inferior to
   2843 file-local settings.
   2844 
   2845 Return PDF file's name.
   2846 
   2847 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
   2848 (autoload 'org-latex-publish-to-latex "ox-latex" "\
   2849 Publish an Org file to LaTeX.
   2850 
   2851 FILENAME is the filename of the Org file to be published.  PLIST
   2852 is the property list for the given project.  PUB-DIR is the
   2853 publishing directory.
   2854 
   2855 Return output file name.
   2856 
   2857 (fn PLIST FILENAME PUB-DIR)")
   2858 (autoload 'org-latex-publish-to-pdf "ox-latex" "\
   2859 Publish an Org file to PDF (via LaTeX).
   2860 
   2861 FILENAME is the filename of the Org file to be published.  PLIST
   2862 is the property list for the given project.  PUB-DIR is the
   2863 publishing directory.
   2864 
   2865 Return output file name.
   2866 
   2867 (fn PLIST FILENAME PUB-DIR)")
   2868 
   2869 
   2870 ;;; Generated autoloads from ox-md.el
   2871 
   2872 (autoload 'org-md-export-as-markdown "ox-md" "\
   2873 Export current buffer to a Markdown buffer.
   2874 
   2875 If narrowing is active in the current buffer, only export its
   2876 narrowed part.
   2877 
   2878 If a region is active, export that region.
   2879 
   2880 A non-nil optional argument ASYNC means the process should happen
   2881 asynchronously.  The resulting buffer should be accessible
   2882 through the `org-export-stack' interface.
   2883 
   2884 When optional argument SUBTREEP is non-nil, export the sub-tree
   2885 at point, extracting information from the headline properties
   2886 first.
   2887 
   2888 When optional argument VISIBLE-ONLY is non-nil, don't export
   2889 contents of hidden elements.
   2890 
   2891 Export is done in a buffer named \"*Org MD Export*\", which will
   2892 be displayed when `org-export-show-temporary-export-buffer' is
   2893 non-nil.
   2894 
   2895 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY)" t)
   2896 (autoload 'org-md-convert-region-to-md "ox-md" "\
   2897 Assume the current region has Org syntax, and convert it to Markdown.
   2898 This can be used in any buffer.  For example, you can write an
   2899 itemized list in Org syntax in a Markdown buffer and use
   2900 this command to convert it." t)
   2901 (autoload 'org-md-export-to-markdown "ox-md" "\
   2902 Export current buffer to a Markdown file.
   2903 
   2904 If narrowing is active in the current buffer, only export its
   2905 narrowed part.
   2906 
   2907 If a region is active, export that region.
   2908 
   2909 A non-nil optional argument ASYNC means the process should happen
   2910 asynchronously.  The resulting file should be accessible through
   2911 the `org-export-stack' interface.
   2912 
   2913 When optional argument SUBTREEP is non-nil, export the sub-tree
   2914 at point, extracting information from the headline properties
   2915 first.
   2916 
   2917 When optional argument VISIBLE-ONLY is non-nil, don't export
   2918 contents of hidden elements.
   2919 
   2920 Return output file's name.
   2921 
   2922 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY)" t)
   2923 (autoload 'org-md-publish-to-md "ox-md" "\
   2924 Publish an org file to Markdown.
   2925 
   2926 FILENAME is the filename of the Org file to be published.  PLIST
   2927 is the property list for the given project.  PUB-DIR is the
   2928 publishing directory.
   2929 
   2930 Return output file name.
   2931 
   2932 (fn PLIST FILENAME PUB-DIR)")
   2933 
   2934 
   2935 ;;; Generated autoloads from ox-odt.el
   2936 
   2937 (put 'org-odt-preferred-output-format 'safe-local-variable 'stringp)
   2938 (autoload 'org-odt-export-as-odf "ox-odt" "\
   2939 Export LATEX-FRAG as OpenDocument formula file ODF-FILE.
   2940 Use `org-create-math-formula' to convert LATEX-FRAG first to
   2941 MathML.  When invoked as an interactive command, use
   2942 `org-latex-regexps' to infer LATEX-FRAG from currently active
   2943 region.  If no LaTeX fragments are found, prompt for it.  Push
   2944 MathML source to kill ring depending on the value of
   2945 `org-export-copy-to-kill-ring'.
   2946 
   2947 (fn LATEX-FRAG &optional ODF-FILE)" t)
   2948 (autoload 'org-odt-export-as-odf-and-open "ox-odt" "\
   2949 Export LaTeX fragment as OpenDocument formula and immediately open it.
   2950 Use `org-odt-export-as-odf' to read LaTeX fragment and OpenDocument
   2951 formula file." t)
   2952 (autoload 'org-odt-export-to-odt "ox-odt" "\
   2953 Export current buffer to a ODT file.
   2954 
   2955 If narrowing is active in the current buffer, only export its
   2956 narrowed part.
   2957 
   2958 If a region is active, export that region.
   2959 
   2960 A non-nil optional argument ASYNC means the process should happen
   2961 asynchronously.  The resulting file should be accessible through
   2962 the `org-export-stack' interface.
   2963 
   2964 When optional argument SUBTREEP is non-nil, export the sub-tree
   2965 at point, extracting information from the headline properties
   2966 first.
   2967 
   2968 When optional argument VISIBLE-ONLY is non-nil, don't export
   2969 contents of hidden elements.
   2970 
   2971 EXT-PLIST, when provided, is a property list with external
   2972 parameters overriding Org default settings, but still inferior to
   2973 file-local settings.
   2974 
   2975 Return output file's name.
   2976 
   2977 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY EXT-PLIST)" t)
   2978 (autoload 'org-odt-convert "ox-odt" "\
   2979 Convert IN-FILE to format OUT-FMT using a command line converter.
   2980 IN-FILE is the file to be converted.  If unspecified, it defaults
   2981 to variable `buffer-file-name'.  OUT-FMT is the desired output
   2982 format.  Use `org-odt-convert-process' as the converter.  If OPEN
   2983 is non-nil then the newly converted file is opened using
   2984 `org-open-file'.
   2985 
   2986 (fn &optional IN-FILE OUT-FMT OPEN)" t)
   2987 
   2988 
   2989 ;;; Generated autoloads from ox-org.el
   2990 
   2991 (autoload 'org-org-export-as-org "ox-org" "\
   2992 Export current buffer to an Org buffer.
   2993 
   2994 If narrowing is active in the current buffer, only export its
   2995 narrowed part.
   2996 
   2997 If a region is active, export that region.
   2998 
   2999 A non-nil optional argument ASYNC means the process should happen
   3000 asynchronously.  The resulting buffer should be accessible
   3001 through the `org-export-stack' interface.
   3002 
   3003 When optional argument SUBTREEP is non-nil, export the sub-tree
   3004 at point, extracting information from the headline properties
   3005 first.
   3006 
   3007 When optional argument VISIBLE-ONLY is non-nil, don't export
   3008 contents of hidden elements.
   3009 
   3010 When optional argument BODY-ONLY is non-nil, strip document
   3011 keywords from output.
   3012 
   3013 EXT-PLIST, when provided, is a property list with external
   3014 parameters overriding Org default settings, but still inferior to
   3015 file-local settings.
   3016 
   3017 Export is done in a buffer named \"*Org ORG Export*\", which will
   3018 be displayed when `org-export-show-temporary-export-buffer' is
   3019 non-nil.
   3020 
   3021 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
   3022 (autoload 'org-org-export-to-org "ox-org" "\
   3023 Export current buffer to an Org file.
   3024 
   3025 If narrowing is active in the current buffer, only export its
   3026 narrowed part.
   3027 
   3028 If a region is active, export that region.
   3029 
   3030 A non-nil optional argument ASYNC means the process should happen
   3031 asynchronously.  The resulting file should be accessible through
   3032 the `org-export-stack' interface.
   3033 
   3034 When optional argument SUBTREEP is non-nil, export the sub-tree
   3035 at point, extracting information from the headline properties
   3036 first.
   3037 
   3038 When optional argument VISIBLE-ONLY is non-nil, don't export
   3039 contents of hidden elements.
   3040 
   3041 When optional argument BODY-ONLY is non-nil, strip document
   3042 keywords from output.
   3043 
   3044 EXT-PLIST, when provided, is a property list with external
   3045 parameters overriding Org default settings, but still inferior to
   3046 file-local settings.
   3047 
   3048 Return output file name.
   3049 
   3050 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
   3051 (autoload 'org-org-publish-to-org "ox-org" "\
   3052 Publish an Org file to Org.
   3053 
   3054 FILENAME is the filename of the Org file to be published.  PLIST
   3055 is the property list for the given project.  PUB-DIR is the
   3056 publishing directory.
   3057 
   3058 Return output file name.
   3059 
   3060 (fn PLIST FILENAME PUB-DIR)")
   3061 
   3062 
   3063 ;;; Generated autoloads from ox-publish.el
   3064 
   3065 (defalias 'org-publish-project 'org-publish)
   3066 (autoload 'org-publish "ox-publish" "\
   3067 Publish PROJECT.
   3068 
   3069 PROJECT is either a project name, as a string, or a project
   3070 alist (see `org-publish-project-alist' variable).
   3071 
   3072 When optional argument FORCE is non-nil, force publishing all
   3073 files in PROJECT.  With a non-nil optional argument ASYNC,
   3074 publishing will be done asynchronously, in another process.
   3075 
   3076 (fn PROJECT &optional FORCE ASYNC)" t)
   3077 (autoload 'org-publish-all "ox-publish" "\
   3078 Publish all projects.
   3079 With prefix argument FORCE, remove all files in the timestamp
   3080 directory and force publishing all projects.  With a non-nil
   3081 optional argument ASYNC, publishing will be done asynchronously,
   3082 in another process.
   3083 
   3084 (fn &optional FORCE ASYNC)" t)
   3085 (autoload 'org-publish-current-file "ox-publish" "\
   3086 Publish the current file.
   3087 With prefix argument FORCE, force publish the file.  When
   3088 optional argument ASYNC is non-nil, publishing will be done
   3089 asynchronously, in another process.
   3090 
   3091 (fn &optional FORCE ASYNC)" t)
   3092 (autoload 'org-publish-current-project "ox-publish" "\
   3093 Publish the project associated with the current file.
   3094 With a prefix argument, force publishing of all files in
   3095 the project.
   3096 
   3097 (fn &optional FORCE ASYNC)" t)
   3098 
   3099 
   3100 ;;; Generated autoloads from ox-texinfo.el
   3101 
   3102 (autoload 'org-texinfo-export-to-texinfo "ox-texinfo" "\
   3103 Export current buffer to a Texinfo file.
   3104 
   3105 If narrowing is active in the current buffer, only export its
   3106 narrowed part.
   3107 
   3108 If a region is active, export that region.
   3109 
   3110 A non-nil optional argument ASYNC means the process should happen
   3111 asynchronously.  The resulting file should be accessible through
   3112 the `org-export-stack' interface.
   3113 
   3114 When optional argument SUBTREEP is non-nil, export the sub-tree
   3115 at point, extracting information from the headline properties
   3116 first.
   3117 
   3118 When optional argument VISIBLE-ONLY is non-nil, don't export
   3119 contents of hidden elements.
   3120 
   3121 When optional argument BODY-ONLY is non-nil, only write code
   3122 between \"\\begin{document}\" and \"\\end{document}\".
   3123 
   3124 EXT-PLIST, when provided, is a property list with external
   3125 parameters overriding Org default settings, but still inferior to
   3126 file-local settings.
   3127 
   3128 Return output file's name.
   3129 
   3130 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
   3131 (autoload 'org-texinfo-export-to-info "ox-texinfo" "\
   3132 Export current buffer to Texinfo then process through to INFO.
   3133 
   3134 If narrowing is active in the current buffer, only export its
   3135 narrowed part.
   3136 
   3137 If a region is active, export that region.
   3138 
   3139 A non-nil optional argument ASYNC means the process should happen
   3140 asynchronously.  The resulting file should be accessible through
   3141 the `org-export-stack' interface.
   3142 
   3143 When optional argument SUBTREEP is non-nil, export the sub-tree
   3144 at point, extracting information from the headline properties
   3145 first.
   3146 
   3147 When optional argument VISIBLE-ONLY is non-nil, don't export
   3148 contents of hidden elements.
   3149 
   3150 When optional argument BODY-ONLY is non-nil, only write code
   3151 between \"\\begin{document}\" and \"\\end{document}\".
   3152 
   3153 EXT-PLIST, when provided, is a property list with external
   3154 parameters overriding Org default settings, but still inferior to
   3155 file-local settings.
   3156 
   3157 Return INFO file's name.
   3158 
   3159 (fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
   3160 (autoload 'org-texinfo-publish-to-texinfo "ox-texinfo" "\
   3161 Publish an org file to Texinfo.
   3162 
   3163 FILENAME is the filename of the Org file to be published.  PLIST
   3164 is the property list for the given project.  PUB-DIR is the
   3165 publishing directory.
   3166 
   3167 Return output file name.
   3168 
   3169 (fn PLIST FILENAME PUB-DIR)")
   3170 (autoload 'org-texinfo-convert-region-to-texinfo "ox-texinfo" "\
   3171 Assume the current region has Org syntax, and convert it to Texinfo.
   3172 This can be used in any buffer.  For example, you can write an
   3173 itemized list in Org syntax in an Texinfo buffer and use this
   3174 command to convert it." t)
   3175 
   3176 ;;; End of scraped data
   3177 
   3178 (provide 'org-loaddefs)
   3179 
   3180 ;; Local Variables:
   3181 ;; version-control: never
   3182 ;; no-byte-compile: t
   3183 ;; no-update-autoloads: t
   3184 ;; no-native-compile: t
   3185 ;; coding: utf-8-emacs-unix
   3186 ;; End:
   3187 
   3188 ;;; org-loaddefs.el ends here