dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

org-loaddefs.el (111970B)


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