aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ldefs-boot.el425
1 files changed, 299 insertions, 126 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index dababdb4fa6..0cb2eb4c31b 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -1102,6 +1102,15 @@ options only, i.e. behave like `apropos-user-option'.
1102 1102
1103\(fn PATTERN &optional DO-NOT-ALL)" t nil) 1103\(fn PATTERN &optional DO-NOT-ALL)" t nil)
1104 1104
1105(autoload 'apropos-local-variable "apropos" "\
1106Show buffer-local variables that match PATTERN.
1107Optional arg BUFFER (default: current buffer) is the buffer to check.
1108
1109The output includes variables that are not yet set in BUFFER, but that
1110will be buffer-local when set.
1111
1112\(fn PATTERN &optional BUFFER)" t nil)
1113
1105(defalias 'command-apropos 'apropos-command) 1114(defalias 'command-apropos 'apropos-command)
1106 1115
1107(autoload 'apropos-command "apropos" "\ 1116(autoload 'apropos-command "apropos" "\
@@ -1167,6 +1176,13 @@ Returns list of symbols and values found.
1167 1176
1168\(fn PATTERN &optional DO-ALL)" t nil) 1177\(fn PATTERN &optional DO-ALL)" t nil)
1169 1178
1179(autoload 'apropos-local-value "apropos" "\
1180Show buffer-local variables whose values match PATTERN.
1181This is like `apropos-value', but only for buffer-local variables.
1182Optional arg BUFFER (default: current buffer) is the buffer to check.
1183
1184\(fn PATTERN &optional BUFFER)" t nil)
1185
1170(autoload 'apropos-documentation "apropos" "\ 1186(autoload 'apropos-documentation "apropos" "\
1171Show symbols whose documentation contains matches for PATTERN. 1187Show symbols whose documentation contains matches for PATTERN.
1172PATTERN can be a word, a list of words (separated by spaces), 1188PATTERN can be a word, a list of words (separated by spaces),
@@ -2878,6 +2894,8 @@ columns on its right towards the left.
2878 2894
2879(put 'bug-reference-url-format 'safe-local-variable (lambda (s) (or (stringp s) (and (symbolp s) (get s 'bug-reference-url-format))))) 2895(put 'bug-reference-url-format 'safe-local-variable (lambda (s) (or (stringp s) (and (symbolp s) (get s 'bug-reference-url-format)))))
2880 2896
2897(put 'bug-reference-bug-regexp 'safe-local-variable 'stringp)
2898
2881(autoload 'bug-reference-mode "bug-reference" "\ 2899(autoload 'bug-reference-mode "bug-reference" "\
2882Toggle hyperlinking bug references in the buffer (Bug Reference mode). 2900Toggle hyperlinking bug references in the buffer (Bug Reference mode).
2883With a prefix argument ARG, enable Bug Reference mode if ARG is 2901With a prefix argument ARG, enable Bug Reference mode if ARG is
@@ -7684,6 +7702,46 @@ in `.emacs'.
7684 7702
7685;;;*** 7703;;;***
7686 7704
7705;;;### (autoloads nil "display-line-numbers" "display-line-numbers.el"
7706;;;;;; (0 0 0 0))
7707;;; Generated autoloads from display-line-numbers.el
7708
7709(autoload 'display-line-numbers-mode "display-line-numbers" "\
7710Toggle display of line numbers in the buffer.
7711This uses `display-line-numbers' internally.
7712
7713To change the type of line numbers displayed by default,
7714customize `display-line-numbers-type'. To change the type while
7715the mode is on, set `display-line-numbers' directly.
7716
7717\(fn &optional ARG)" t nil)
7718
7719(defvar global-display-line-numbers-mode nil "\
7720Non-nil if Global Display-Line-Numbers mode is enabled.
7721See the `global-display-line-numbers-mode' command
7722for a description of this minor mode.
7723Setting this variable directly does not take effect;
7724either customize it (see the info node `Easy Customization')
7725or call the function `global-display-line-numbers-mode'.")
7726
7727(custom-autoload 'global-display-line-numbers-mode "display-line-numbers" nil)
7728
7729(autoload 'global-display-line-numbers-mode "display-line-numbers" "\
7730Toggle Display-Line-Numbers mode in all buffers.
7731With prefix ARG, enable Global Display-Line-Numbers mode if ARG is positive;
7732otherwise, disable it. If called from Lisp, enable the mode if
7733ARG is omitted or nil.
7734
7735Display-Line-Numbers mode is enabled in all buffers where
7736`display-line-numbers--turn-on' would do it.
7737See `display-line-numbers-mode' for more information on Display-Line-Numbers mode.
7738
7739\(fn &optional ARG)" t nil)
7740
7741(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "display-line-numbers" '("display-line-numbers-")))
7742
7743;;;***
7744
7687;;;### (autoloads nil "dissociate" "play/dissociate.el" (0 0 0 0)) 7745;;;### (autoloads nil "dissociate" "play/dissociate.el" (0 0 0 0))
7688;;; Generated autoloads from play/dissociate.el 7746;;; Generated autoloads from play/dissociate.el
7689 7747
@@ -11892,9 +11950,12 @@ Render FILE using EWW.
11892 11950
11893(autoload 'eww-search-words "eww" "\ 11951(autoload 'eww-search-words "eww" "\
11894Search the web for the text between BEG and END. 11952Search the web for the text between BEG and END.
11895See the `eww-search-prefix' variable for the search engine used. 11953If region is active (and not whitespace), search the web for
11954the text between BEG and END. Else, prompt the user for a search
11955string. See the `eww-search-prefix' variable for the search
11956engine used.
11896 11957
11897\(fn &optional BEG END)" t nil) 11958\(fn)" t nil)
11898 11959
11899(autoload 'eww-mode "eww" "\ 11960(autoload 'eww-mode "eww" "\
11900Mode for browsing the web. 11961Mode for browsing the web.
@@ -11935,7 +11996,7 @@ command to find the next error. The buffer is also in `comint-mode' and
11935 11996
11936(autoload 'executable-set-magic "executable" "\ 11997(autoload 'executable-set-magic "executable" "\
11937Set this buffer's interpreter to INTERPRETER with optional ARGUMENT. 11998Set this buffer's interpreter to INTERPRETER with optional ARGUMENT.
11938The variables `executable-magicless-file-regexp', `executable-prefix', 11999The variables `executable-magicless-file-regexp', `executable-prefix-env',
11939`executable-insert', `executable-query' and `executable-chmod' control 12000`executable-insert', `executable-query' and `executable-chmod' control
11940when and how magic numbers are inserted or replaced and scripts made 12001when and how magic numbers are inserted or replaced and scripts made
11941executable. 12002executable.
@@ -12316,7 +12377,8 @@ If `ffap-url-regexp' is not nil, the FILENAME may also be an URL.
12316With a prefix, this command behaves exactly like `ffap-file-finder'. 12377With a prefix, this command behaves exactly like `ffap-file-finder'.
12317If `ffap-require-prefix' is set, the prefix meaning is reversed. 12378If `ffap-require-prefix' is set, the prefix meaning is reversed.
12318See also the variables `ffap-dired-wildcards', `ffap-newfile-prompt', 12379See also the variables `ffap-dired-wildcards', `ffap-newfile-prompt',
12319and the functions `ffap-file-at-point' and `ffap-url-at-point'. 12380`ffap-url-unwrap-local', `ffap-url-unwrap-remote', and the functions
12381`ffap-file-at-point' and `ffap-url-at-point'.
12320 12382
12321\(fn &optional FILENAME)" t nil) 12383\(fn &optional FILENAME)" t nil)
12322 12384
@@ -14998,8 +15060,12 @@ List of hook functions run by `grep-process-setup' (see `run-hooks').")
14998 15060
14999(custom-autoload 'grep-setup-hook "grep" t) 15061(custom-autoload 'grep-setup-hook "grep" t)
15000 15062
15001(defconst grep-regexp-alist '(("^\\(.*?[^/\n]\\):[ ]*\\([1-9][0-9]*\\)[ ]*:" 1 2 ((lambda nil (when grep-highlight-matches (let* ((beg (match-end 0)) (end (save-excursion (goto-char beg) (line-end-position))) (mbeg (text-property-any beg end 'font-lock-face grep-match-face))) (when mbeg (- mbeg beg))))) lambda nil (when grep-highlight-matches (let* ((beg (match-end 0)) (end (save-excursion (goto-char beg) (line-end-position))) (mbeg (text-property-any beg end 'font-lock-face grep-match-face)) (mend (and mbeg (next-single-property-change mbeg 'font-lock-face nil end)))) (when mend (- mend beg)))))) ("^Binary file \\(.+\\) matches$" 1 nil nil 0 1)) "\ 15063(autoload 'grep-regexp-alist "grep" "\
15002Regexp used to match grep hits. See `compilation-error-regexp-alist'.") 15064Return a regexp alist to match grep hits.
15065The regexp used depends on `grep-use-null-filename-separator'.
15066See `compilation-error-regexp-alist' for format details.
15067
15068\(fn)" nil nil)
15003 15069
15004(defvar grep-program (purecopy "grep") "\ 15070(defvar grep-program (purecopy "grep") "\
15005The default grep program for `grep-command' and `grep-find-command'. 15071The default grep program for `grep-command' and `grep-find-command'.
@@ -19147,7 +19213,8 @@ Use \\[kmacro-insert-counter] to insert (and increment) the macro counter.
19147The counter value can be set or modified via \\[kmacro-set-counter] and \\[kmacro-add-counter]. 19213The counter value can be set or modified via \\[kmacro-set-counter] and \\[kmacro-add-counter].
19148The format of the counter can be modified via \\[kmacro-set-format]. 19214The format of the counter can be modified via \\[kmacro-set-format].
19149 19215
19150Use \\[kmacro-name-last-macro] to give it a permanent name. 19216Use \\[kmacro-name-last-macro] to give it a name that will remain valid even
19217after another macro is defined.
19151Use \\[kmacro-bind-to-key] to bind it to a key sequence. 19218Use \\[kmacro-bind-to-key] to bind it to a key sequence.
19152 19219
19153\(fn ARG)" t nil) 19220\(fn ARG)" t nil)
@@ -19175,8 +19242,8 @@ just the last key in the key sequence that you used to call this
19175command. See `kmacro-call-repeat-key' and `kmacro-call-repeat-with-arg' 19242command. See `kmacro-call-repeat-key' and `kmacro-call-repeat-with-arg'
19176for details on how to adjust or disable this behavior. 19243for details on how to adjust or disable this behavior.
19177 19244
19178To make a macro permanent so you can call it even after defining 19245To give a macro a name so you can call it even after defining others,
19179others, use \\[kmacro-name-last-macro]. 19246use \\[kmacro-name-last-macro].
19180 19247
19181\(fn ARG &optional NO-REPEAT END-MACRO MACRO)" t nil) 19248\(fn ARG &optional NO-REPEAT END-MACRO MACRO)" t nil)
19182 19249
@@ -19211,8 +19278,8 @@ Call last keyboard macro, ending it first if currently being defined.
19211With numeric prefix ARG, repeat macro that many times. 19278With numeric prefix ARG, repeat macro that many times.
19212Zero argument means repeat until there is an error. 19279Zero argument means repeat until there is an error.
19213 19280
19214To give a macro a permanent name, so you can call it 19281To give a macro a name, so you can call it even after defining other
19215even after defining other macros, use \\[kmacro-name-last-macro]. 19282macros, use \\[kmacro-name-last-macro].
19216 19283
19217\(fn ARG &optional NO-REPEAT)" t nil) 19284\(fn ARG &optional NO-REPEAT)" t nil)
19218 19285
@@ -19522,7 +19589,7 @@ something strange, such as redefining an Emacs function.
19522 19589
19523\(fn FEATURE &optional FORCE)" t nil) 19590\(fn FEATURE &optional FORCE)" t nil)
19524 19591
19525(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "loadhist" '("unload-" "loadhist-hook-functions" "read-feature" "feature-" "file-"))) 19592(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "loadhist" '("loadhist-" "unload-" "read-feature" "feature-" "file-")))
19526 19593
19527;;;*** 19594;;;***
19528 19595
@@ -20360,7 +20427,7 @@ Default bookmark handler for Man buffers.
20360 20427
20361;;;### (autoloads nil "map" "emacs-lisp/map.el" (0 0 0 0)) 20428;;;### (autoloads nil "map" "emacs-lisp/map.el" (0 0 0 0))
20362;;; Generated autoloads from emacs-lisp/map.el 20429;;; Generated autoloads from emacs-lisp/map.el
20363(push (purecopy '(map 1 1)) package--builtin-versions) 20430(push (purecopy '(map 1 2)) package--builtin-versions)
20364 20431
20365(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "map" '("map"))) 20432(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "map" '("map")))
20366 20433
@@ -22710,10 +22777,25 @@ Many aspects this mode can be customized using
22710 22777
22711;;;*** 22778;;;***
22712 22779
22780;;;### (autoloads nil "ob-J" "org/ob-J.el" (0 0 0 0))
22781;;; Generated autoloads from org/ob-J.el
22782
22783(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-J" '("obj-" "org-babel-")))
22784
22785;;;***
22786
22713;;;### (autoloads nil "ob-R" "org/ob-R.el" (0 0 0 0)) 22787;;;### (autoloads nil "ob-R" "org/ob-R.el" (0 0 0 0))
22714;;; Generated autoloads from org/ob-R.el 22788;;; Generated autoloads from org/ob-R.el
22715 22789
22716(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-R" '("org-babel-"))) 22790(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-R" '("ob-R-" "org-babel-")))
22791
22792;;;***
22793
22794;;;### (autoloads nil "ob-abc" "org/ob-abc.el" (0 0 0 0))
22795;;; Generated autoloads from org/ob-abc.el
22796(push (purecopy '(ob-abc 0 1)) package--builtin-versions)
22797
22798(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-abc" '("org-babel-")))
22717 22799
22718;;;*** 22800;;;***
22719 22801
@@ -22753,6 +22835,13 @@ Many aspects this mode can be customized using
22753 22835
22754;;;*** 22836;;;***
22755 22837
22838;;;### (autoloads nil "ob-coq" "org/ob-coq.el" (0 0 0 0))
22839;;; Generated autoloads from org/ob-coq.el
22840
22841(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-coq" '("org-babel-" "coq-program-name")))
22842
22843;;;***
22844
22756;;;### (autoloads "actual autoloads are elsewhere" "ob-core" "org/ob-core.el" 22845;;;### (autoloads "actual autoloads are elsewhere" "ob-core" "org/ob-core.el"
22757;;;;;; (0 0 0 0)) 22846;;;;;; (0 0 0 0))
22758;;; Generated autoloads from org/ob-core.el 22847;;; Generated autoloads from org/ob-core.el
@@ -22782,6 +22871,14 @@ Many aspects this mode can be customized using
22782 22871
22783;;;*** 22872;;;***
22784 22873
22874;;;### (autoloads nil "ob-ebnf" "org/ob-ebnf.el" (0 0 0 0))
22875;;; Generated autoloads from org/ob-ebnf.el
22876(push (purecopy '(ob-ebnf 1 0)) package--builtin-versions)
22877
22878(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-ebnf" '("org-babel-")))
22879
22880;;;***
22881
22785;;;### (autoloads nil "ob-emacs-lisp" "org/ob-emacs-lisp.el" (0 0 22882;;;### (autoloads nil "ob-emacs-lisp" "org/ob-emacs-lisp.el" (0 0
22786;;;;;; 0 0)) 22883;;;;;; 0 0))
22787;;; Generated autoloads from org/ob-emacs-lisp.el 22884;;; Generated autoloads from org/ob-emacs-lisp.el
@@ -22804,6 +22901,13 @@ Many aspects this mode can be customized using
22804 22901
22805;;;*** 22902;;;***
22806 22903
22904;;;### (autoloads nil "ob-forth" "org/ob-forth.el" (0 0 0 0))
22905;;; Generated autoloads from org/ob-forth.el
22906
22907(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-forth" '("org-babel-")))
22908
22909;;;***
22910
22807;;;### (autoloads nil "ob-fortran" "org/ob-fortran.el" (0 0 0 0)) 22911;;;### (autoloads nil "ob-fortran" "org/ob-fortran.el" (0 0 0 0))
22808;;; Generated autoloads from org/ob-fortran.el 22912;;; Generated autoloads from org/ob-fortran.el
22809 22913
@@ -22818,6 +22922,13 @@ Many aspects this mode can be customized using
22818 22922
22819;;;*** 22923;;;***
22820 22924
22925;;;### (autoloads nil "ob-groovy" "org/ob-groovy.el" (0 0 0 0))
22926;;; Generated autoloads from org/ob-groovy.el
22927
22928(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-groovy" '("org-babel-")))
22929
22930;;;***
22931
22821;;;### (autoloads nil "ob-haskell" "org/ob-haskell.el" (0 0 0 0)) 22932;;;### (autoloads nil "ob-haskell" "org/ob-haskell.el" (0 0 0 0))
22822;;; Generated autoloads from org/ob-haskell.el 22933;;; Generated autoloads from org/ob-haskell.el
22823 22934
@@ -22857,7 +22968,7 @@ Many aspects this mode can be customized using
22857;;;### (autoloads nil "ob-latex" "org/ob-latex.el" (0 0 0 0)) 22968;;;### (autoloads nil "ob-latex" "org/ob-latex.el" (0 0 0 0))
22858;;; Generated autoloads from org/ob-latex.el 22969;;; Generated autoloads from org/ob-latex.el
22859 22970
22860(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-latex" '("org-babel-" "convert-pdf"))) 22971(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-latex" '("org-babel-")))
22861 22972
22862;;;*** 22973;;;***
22863 22974
@@ -22890,6 +23001,13 @@ Many aspects this mode can be customized using
22890 23001
22891;;;*** 23002;;;***
22892 23003
23004;;;### (autoloads nil "ob-lua" "org/ob-lua.el" (0 0 0 0))
23005;;; Generated autoloads from org/ob-lua.el
23006
23007(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-lua" '("org-babel-")))
23008
23009;;;***
23010
22893;;;### (autoloads nil "ob-makefile" "org/ob-makefile.el" (0 0 0 0)) 23011;;;### (autoloads nil "ob-makefile" "org/ob-makefile.el" (0 0 0 0))
22894;;; Generated autoloads from org/ob-makefile.el 23012;;; Generated autoloads from org/ob-makefile.el
22895 23013
@@ -22953,6 +23071,14 @@ Many aspects this mode can be customized using
22953 23071
22954;;;*** 23072;;;***
22955 23073
23074;;;### (autoloads nil "ob-processing" "org/ob-processing.el" (0 0
23075;;;;;; 0 0))
23076;;; Generated autoloads from org/ob-processing.el
23077
23078(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-processing" '("org-babel-")))
23079
23080;;;***
23081
22956;;;### (autoloads nil "ob-python" "org/ob-python.el" (0 0 0 0)) 23082;;;### (autoloads nil "ob-python" "org/ob-python.el" (0 0 0 0))
22957;;; Generated autoloads from org/ob-python.el 23083;;; Generated autoloads from org/ob-python.el
22958 23084
@@ -23002,10 +23128,18 @@ Many aspects this mode can be customized using
23002 23128
23003;;;*** 23129;;;***
23004 23130
23005;;;### (autoloads nil "ob-sh" "org/ob-sh.el" (0 0 0 0)) 23131;;;### (autoloads nil "ob-sed" "org/ob-sed.el" (0 0 0 0))
23006;;; Generated autoloads from org/ob-sh.el 23132;;; Generated autoloads from org/ob-sed.el
23133(push (purecopy '(ob-sed 0 1 0)) package--builtin-versions)
23134
23135(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-sed" '("org-babel-")))
23136
23137;;;***
23138
23139;;;### (autoloads nil "ob-shell" "org/ob-shell.el" (0 0 0 0))
23140;;; Generated autoloads from org/ob-shell.el
23007 23141
23008(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-sh" '("org-babel-"))) 23142(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-shell" '("org-babel-")))
23009 23143
23010;;;*** 23144;;;***
23011 23145
@@ -23019,7 +23153,7 @@ Many aspects this mode can be customized using
23019;;;### (autoloads nil "ob-sql" "org/ob-sql.el" (0 0 0 0)) 23153;;;### (autoloads nil "ob-sql" "org/ob-sql.el" (0 0 0 0))
23020;;; Generated autoloads from org/ob-sql.el 23154;;; Generated autoloads from org/ob-sql.el
23021 23155
23022(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-sql" '("org-babel-" "dbstring-mysql"))) 23156(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-sql" '("org-babel-")))
23023 23157
23024;;;*** 23158;;;***
23025 23159
@@ -23030,6 +23164,13 @@ Many aspects this mode can be customized using
23030 23164
23031;;;*** 23165;;;***
23032 23166
23167;;;### (autoloads nil "ob-stan" "org/ob-stan.el" (0 0 0 0))
23168;;; Generated autoloads from org/ob-stan.el
23169
23170(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-stan" '("org-babel-")))
23171
23172;;;***
23173
23033;;;### (autoloads nil "ob-table" "org/ob-table.el" (0 0 0 0)) 23174;;;### (autoloads nil "ob-table" "org/ob-table.el" (0 0 0 0))
23034;;; Generated autoloads from org/ob-table.el 23175;;; Generated autoloads from org/ob-table.el
23035 23176
@@ -23137,7 +23278,7 @@ Load the languages defined in `org-babel-load-languages'.
23137\(fn SYM VALUE)" nil nil) 23278\(fn SYM VALUE)" nil nil)
23138 23279
23139(autoload 'org-babel-load-file "org" "\ 23280(autoload 'org-babel-load-file "org" "\
23140Load Emacs Lisp source code blocks in the Org-mode FILE. 23281Load Emacs Lisp source code blocks in the Org FILE.
23141This function exports the source code using `org-babel-tangle' 23282This function exports the source code using `org-babel-tangle'
23142and then loads the resulting file using `load-file'. With prefix 23283and then loads the resulting file using `load-file'. With prefix
23143arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp 23284arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
@@ -23146,10 +23287,11 @@ file to byte-code before it is loaded.
23146\(fn FILE &optional COMPILE)" t nil) 23287\(fn FILE &optional COMPILE)" t nil)
23147 23288
23148(autoload 'org-version "org" "\ 23289(autoload 'org-version "org" "\
23149Show the org-mode version in the echo area. 23290Show the Org version.
23150With prefix argument HERE, insert it at point. 23291Interactively, or when MESSAGE is non-nil, show it in echo area.
23151When FULL is non-nil, use a verbose version string. 23292With prefix argument, or when HERE is non-nil, insert it at point.
23152When MESSAGE is non-nil, display a message with the version. 23293In non-interactive uses, a reduced version string is output unless
23294FULL is given.
23153 23295
23154\(fn &optional HERE FULL MESSAGE)" t nil) 23296\(fn &optional HERE FULL MESSAGE)" t nil)
23155 23297
@@ -23167,15 +23309,15 @@ Set up hooks for clock persistence.
23167Outline-based notes management and organizer, alias 23309Outline-based notes management and organizer, alias
23168\"Carsten's outline-mode for keeping track of everything.\" 23310\"Carsten's outline-mode for keeping track of everything.\"
23169 23311
23170Org-mode develops organizational tasks around a NOTES file which 23312Org mode develops organizational tasks around a NOTES file which
23171contains information about projects as plain text. Org-mode is 23313contains information about projects as plain text. Org mode is
23172implemented on top of outline-mode, which is ideal to keep the content 23314implemented on top of Outline mode, which is ideal to keep the content
23173of large files well structured. It supports ToDo items, deadlines and 23315of large files well structured. It supports ToDo items, deadlines and
23174time stamps, which magically appear in the diary listing of the Emacs 23316time stamps, which magically appear in the diary listing of the Emacs
23175calendar. Tables are easily created with a built-in table editor. 23317calendar. Tables are easily created with a built-in table editor.
23176Plain text URL-like links connect to websites, emails (VM), Usenet 23318Plain text URL-like links connect to websites, emails (VM), Usenet
23177messages (Gnus), BBDB entries, and any files related to the project. 23319messages (Gnus), BBDB entries, and any files related to the project.
23178For printing and sharing of notes, an Org-mode file (or a part of it) 23320For printing and sharing of notes, an Org file (or a part of it)
23179can be exported as a structured ASCII or HTML file. 23321can be exported as a structured ASCII or HTML file.
23180 23322
23181The following commands are available: 23323The following commands are available:
@@ -23185,58 +23327,60 @@ The following commands are available:
23185\(fn)" t nil) 23327\(fn)" t nil)
23186 23328
23187(autoload 'org-cycle "org" "\ 23329(autoload 'org-cycle "org" "\
23188TAB-action and visibility cycling for Org-mode. 23330TAB-action and visibility cycling for Org mode.
23189 23331
23190This is the command invoked in Org-mode by the TAB key. Its main purpose 23332This is the command invoked in Org mode by the `TAB' key. Its main
23191is outline visibility cycling, but it also invokes other actions 23333purpose is outline visibility cycling, but it also invokes other actions
23192in special contexts. 23334in special contexts.
23193 23335
23194- When this function is called with a prefix argument, rotate the entire 23336When this function is called with a `\\[universal-argument]' prefix, rotate the entire
23195 buffer through 3 states (global cycling) 23337buffer through 3 states (global cycling)
23196 1. OVERVIEW: Show only top-level headlines. 23338 1. OVERVIEW: Show only top-level headlines.
23197 2. CONTENTS: Show all headlines of all levels, but no body text. 23339 2. CONTENTS: Show all headlines of all levels, but no body text.
23198 3. SHOW ALL: Show everything. 23340 3. SHOW ALL: Show everything.
23199 When called with two `C-u C-u' prefixes, switch to the startup visibility,
23200 determined by the variable `org-startup-folded', and by any VISIBILITY
23201 properties in the buffer.
23202 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
23203 including any drawers.
23204 23341
23205- When inside a table, re-align the table and move to the next field. 23342With a `\\[universal-argument] \\[universal-argument]' prefix argument, switch to the startup visibility,
23343determined by the variable `org-startup-folded', and by any VISIBILITY
23344properties in the buffer.
23345
23346With a `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix argument, show the entire buffer, including
23347any drawers.
23206 23348
23207- When point is at the beginning of a headline, rotate the subtree started 23349When inside a table, re-align the table and move to the next field.
23208 by this line through 3 different states (local cycling) 23350
23351When point is at the beginning of a headline, rotate the subtree started
23352by this line through 3 different states (local cycling)
23209 1. FOLDED: Only the main headline is shown. 23353 1. FOLDED: Only the main headline is shown.
23210 2. CHILDREN: The main headline and the direct children are shown. 23354 2. CHILDREN: The main headline and the direct children are shown.
23211 From this state, you can move to one of the children 23355 From this state, you can move to one of the children
23212 and zoom in further. 23356 and zoom in further.
23213 3. SUBTREE: Show the entire subtree, including body text. 23357 3. SUBTREE: Show the entire subtree, including body text.
23214 If there is no subtree, switch directly from CHILDREN to FOLDED. 23358If there is no subtree, switch directly from CHILDREN to FOLDED.
23215 23359
23216- When point is at the beginning of an empty headline and the variable 23360When point is at the beginning of an empty headline and the variable
23217 `org-cycle-level-after-item/entry-creation' is set, cycle the level 23361`org-cycle-level-after-item/entry-creation' is set, cycle the level
23218 of the headline by demoting and promoting it to likely levels. This 23362of the headline by demoting and promoting it to likely levels. This
23219 speeds up creation document structure by pressing TAB once or several 23363speeds up creation document structure by pressing `TAB' once or several
23220 times right after creating a new headline. 23364times right after creating a new headline.
23221 23365
23222- When there is a numeric prefix, go up to a heading with level ARG, do 23366When there is a numeric prefix, go up to a heading with level ARG, do
23223 a `show-subtree' and return to the previous cursor position. If ARG 23367a `show-subtree' and return to the previous cursor position. If ARG
23224 is negative, go up that many levels. 23368is negative, go up that many levels.
23225 23369
23226- When point is not at the beginning of a headline, execute the global 23370When point is not at the beginning of a headline, execute the global
23227 binding for TAB, which is re-indenting the line. See the option 23371binding for `TAB', which is re-indenting the line. See the option
23228 `org-cycle-emulate-tab' for details. 23372`org-cycle-emulate-tab' for details.
23229 23373
23230- Special case: if point is at the beginning of the buffer and there is 23374As a special case, if point is at the beginning of the buffer and there is
23231 no headline in line 1, this function will act as if called with prefix arg 23375no headline in line 1, this function will act as if called with prefix arg
23232 (C-u TAB, same as S-TAB) also when called without prefix arg. 23376\(`\\[universal-argument] TAB', same as `S-TAB') also when called without prefix arg, but only
23233 But only if also the variable `org-cycle-global-at-bob' is t. 23377if the variable `org-cycle-global-at-bob' is t.
23234 23378
23235\(fn &optional ARG)" t nil) 23379\(fn &optional ARG)" t nil)
23236 23380
23237(autoload 'org-global-cycle "org" "\ 23381(autoload 'org-global-cycle "org" "\
23238Cycle the global visibility. For details see `org-cycle'. 23382Cycle the global visibility. For details see `org-cycle'.
23239With \\[universal-argument] prefix arg, switch to startup visibility. 23383With `\\[universal-argument]' prefix ARG, switch to startup visibility.
23240With a numeric prefix, show all headlines up to that level. 23384With a numeric prefix, show all headlines up to that level.
23241 23385
23242\(fn &optional ARG)" t nil) 23386\(fn &optional ARG)" t nil)
@@ -23244,10 +23388,10 @@ With a numeric prefix, show all headlines up to that level.
23244 23388
23245(autoload 'orgstruct-mode "org" "\ 23389(autoload 'orgstruct-mode "org" "\
23246Toggle the minor mode `orgstruct-mode'. 23390Toggle the minor mode `orgstruct-mode'.
23247This mode is for using Org-mode structure commands in other 23391This mode is for using Org mode structure commands in other
23248modes. The following keys behave as if Org-mode were active, if 23392modes. The following keys behave as if Org mode were active, if
23249the cursor is on a headline, or on a plain list item (both as 23393the cursor is on a headline, or on a plain list item (both as
23250defined by Org-mode). 23394defined by Org mode).
23251 23395
23252\(fn &optional ARG)" t nil) 23396\(fn &optional ARG)" t nil)
23253 23397
@@ -23262,61 +23406,59 @@ Unconditionally turn on `orgstruct++-mode'.
23262\(fn)" nil nil) 23406\(fn)" nil nil)
23263 23407
23264(autoload 'org-run-like-in-org-mode "org" "\ 23408(autoload 'org-run-like-in-org-mode "org" "\
23265Run a command, pretending that the current buffer is in Org-mode. 23409Run a command, pretending that the current buffer is in Org mode.
23266This will temporarily bind local variables that are typically bound in 23410This will temporarily bind local variables that are typically bound in
23267Org-mode to the values they have in Org-mode, and then interactively 23411Org mode to the values they have in Org mode, and then interactively
23268call CMD. 23412call CMD.
23269 23413
23270\(fn CMD)" nil nil) 23414\(fn CMD)" nil nil)
23271 23415
23272(autoload 'org-store-link "org" "\ 23416(autoload 'org-store-link "org" "\
23273\\<org-mode-map>Store an org-link to the current location. 23417Store an org-link to the current location.
23418\\<org-mode-map>
23274This link is added to `org-stored-links' and can later be inserted 23419This link is added to `org-stored-links' and can later be inserted
23275into an org-buffer with \\[org-insert-link]. 23420into an Org buffer with `org-insert-link' (`\\[org-insert-link]').
23276 23421
23277For some link types, a prefix arg is interpreted. 23422For some link types, a `\\[universal-argument]' prefix ARG is interpreted. A single
23278For links to Usenet articles, arg negates `org-gnus-prefer-web-links'. 23423`\\[universal-argument]' negates `org-context-in-file-links' for file links or
23279For file links, arg negates `org-context-in-file-links'. 23424`org-gnus-prefer-web-links' for links to Usenet articles.
23280 23425
23281A double prefix arg force skipping storing functions that are not 23426A `\\[universal-argument] \\[universal-argument]' prefix ARG forces skipping storing functions that are not
23282part of Org's core. 23427part of Org core.
23283 23428
23284A triple prefix arg force storing a link for each line in the 23429A `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix ARG forces storing a link for each line in the
23285active region. 23430active region.
23286 23431
23287\(fn ARG)" t nil) 23432\(fn ARG)" t nil)
23288 23433
23289(autoload 'org-insert-link-global "org" "\ 23434(autoload 'org-insert-link-global "org" "\
23290Insert a link like Org-mode does. 23435Insert a link like Org mode does.
23291This command can be called in any mode to insert a link in Org-mode syntax. 23436This command can be called in any mode to insert a link in Org syntax.
23292 23437
23293\(fn)" t nil) 23438\(fn)" t nil)
23294 23439
23295(autoload 'org-open-at-point-global "org" "\ 23440(autoload 'org-open-at-point-global "org" "\
23296Follow a link like Org-mode does. 23441Follow a link or time-stamp like Org mode does.
23297This command can be called in any mode to follow a link that has 23442This command can be called in any mode to follow an external link
23298Org-mode syntax. 23443or a time-stamp that has Org mode syntax. Its behavior is
23444undefined when called on internal links (e.g., fuzzy links).
23445Raise an error when there is nothing to follow.
23299 23446
23300\(fn)" t nil) 23447\(fn)" t nil)
23301 23448
23302(autoload 'org-open-link-from-string "org" "\ 23449(autoload 'org-open-link-from-string "org" "\
23303Open a link in the string S, as if it was in Org-mode. 23450Open a link in the string S, as if it was in Org mode.
23304 23451
23305\(fn S &optional ARG REFERENCE-BUFFER)" t nil) 23452\(fn S &optional ARG REFERENCE-BUFFER)" t nil)
23306 23453
23307(autoload 'org-switchb "org" "\ 23454(autoload 'org-switchb "org" "\
23308Switch between Org buffers. 23455Switch between Org buffers.
23309With one prefix argument, restrict available buffers to files.
23310With two prefix arguments, restrict available buffers to agenda files.
23311
23312Defaults to `iswitchb' for buffer name completion.
23313Set `org-completion-use-ido' to make it use ido instead.
23314 23456
23315\(fn &optional ARG)" t nil) 23457With `\\[universal-argument]' prefix, restrict available buffers to files.
23316 23458
23317(defalias 'org-ido-switchb 'org-switchb) 23459With `\\[universal-argument] \\[universal-argument]' prefix, restrict available buffers to agenda files.
23318 23460
23319(defalias 'org-iswitchb 'org-switchb) 23461\(fn &optional ARG)" t nil)
23320 23462
23321(autoload 'org-cycle-agenda-files "org" "\ 23463(autoload 'org-cycle-agenda-files "org" "\
23322Cycle through the files in `org-agenda-files'. 23464Cycle through the files in `org-agenda-files'.
@@ -23326,13 +23468,13 @@ If the current buffer does not, find the first agenda file.
23326\(fn)" t nil) 23468\(fn)" t nil)
23327 23469
23328(autoload 'org-submit-bug-report "org" "\ 23470(autoload 'org-submit-bug-report "org" "\
23329Submit a bug report on Org-mode via mail. 23471Submit a bug report on Org via mail.
23330 23472
23331Don't hesitate to report any problems or inaccurate documentation. 23473Don't hesitate to report any problems or inaccurate documentation.
23332 23474
23333If you don't have setup sending mail from (X)Emacs, please copy the 23475If you don't have setup sending mail from (X)Emacs, please copy the
23334output buffer into your mail program, as it gives us important 23476output buffer into your mail program, as it gives us important
23335information about your Org-mode version and configuration. 23477information about your Org version and configuration.
23336 23478
23337\(fn)" t nil) 23479\(fn)" t nil)
23338 23480
@@ -23388,9 +23530,9 @@ More commands can be added by configuring the variable
23388`org-agenda-custom-commands'. In particular, specific tags and TODO keyword 23530`org-agenda-custom-commands'. In particular, specific tags and TODO keyword
23389searches can be pre-defined in this way. 23531searches can be pre-defined in this way.
23390 23532
23391If the current buffer is in Org-mode and visiting a file, you can also 23533If the current buffer is in Org mode and visiting a file, you can also
23392first press `<' once to indicate that the agenda should be temporarily 23534first press `<' once to indicate that the agenda should be temporarily
23393\(until the next use of \\[org-agenda]) restricted to the current file. 23535\(until the next use of `\\[org-agenda]') restricted to the current file.
23394Pressing `<' twice means to restrict to the current subtree or region 23536Pressing `<' twice means to restrict to the current subtree or region
23395\(if active). 23537\(if active).
23396 23538
@@ -23519,7 +23661,7 @@ in `org-agenda-text-search-extra-files'.
23519(autoload 'org-todo-list "org-agenda" "\ 23661(autoload 'org-todo-list "org-agenda" "\
23520Show all (not done) TODO entries from all agenda file in a single list. 23662Show all (not done) TODO entries from all agenda file in a single list.
23521The prefix arg can be used to select a specific TODO keyword and limit 23663The prefix arg can be used to select a specific TODO keyword and limit
23522the list to these. When using \\[universal-argument], you will be prompted 23664the list to these. When using `\\[universal-argument]', you will be prompted
23523for a keyword. A numeric prefix directly selects the Nth keyword in 23665for a keyword. A numeric prefix directly selects the Nth keyword in
23524`org-todo-keywords-1'. 23666`org-todo-keywords-1'.
23525 23667
@@ -23575,22 +23717,22 @@ Do we have a reason to ignore this TODO entry because it has a time stamp?
23575 23717
23576(autoload 'org-agenda-set-restriction-lock "org-agenda" "\ 23718(autoload 'org-agenda-set-restriction-lock "org-agenda" "\
23577Set restriction lock for agenda, to current subtree or file. 23719Set restriction lock for agenda, to current subtree or file.
23578Restriction will be the file if TYPE is `file', or if TYPE is the 23720Restriction will be the file if TYPE is `file', or if type is the
23579universal prefix `(4)', or if the cursor is before the first headline 23721universal prefix \\='(4), or if the cursor is before the first headline
23580in the file. Otherwise, restriction will be to the current subtree. 23722in the file. Otherwise, restriction will be to the current subtree.
23581 23723
23582\(fn &optional TYPE)" t nil) 23724\(fn &optional TYPE)" t nil)
23583 23725
23584(autoload 'org-calendar-goto-agenda "org-agenda" "\ 23726(autoload 'org-calendar-goto-agenda "org-agenda" "\
23585Compute the Org-mode agenda for the calendar date displayed at the cursor. 23727Compute the Org agenda for the calendar date displayed at the cursor.
23586This is a command that has to be installed in `calendar-mode-map'. 23728This is a command that has to be installed in `calendar-mode-map'.
23587 23729
23588\(fn)" t nil) 23730\(fn)" t nil)
23589 23731
23590(autoload 'org-agenda-to-appt "org-agenda" "\ 23732(autoload 'org-agenda-to-appt "org-agenda" "\
23591Activate appointments found in `org-agenda-files'. 23733Activate appointments found in `org-agenda-files'.
23592With a \\[universal-argument] prefix, refresh the list of 23734
23593appointments. 23735With a `\\[universal-argument]' prefix, refresh the list of appointments.
23594 23736
23595If FILTER is t, interactively prompt the user for a regular 23737If FILTER is t, interactively prompt the user for a regular
23596expression, and filter out entries that don't match it. 23738expression, and filter out entries that don't match it.
@@ -23605,8 +23747,8 @@ argument: an entry from `org-agenda-get-day-entries'.
23605FILTER can also be an alist with the car of each cell being 23747FILTER can also be an alist with the car of each cell being
23606either `headline' or `category'. For example: 23748either `headline' or `category'. For example:
23607 23749
23608 ((headline \"IMPORTANT\") 23750 \\='((headline \"IMPORTANT\")
23609 (category \"Work\")) 23751 (category \"Work\"))
23610 23752
23611will only add headlines containing IMPORTANT or headlines 23753will only add headlines containing IMPORTANT or headlines
23612belonging to the \"Work\" category. 23754belonging to the \"Work\" category.
@@ -23668,16 +23810,17 @@ Capture STRING with the template selected by KEYS.
23668(autoload 'org-capture "org-capture" "\ 23810(autoload 'org-capture "org-capture" "\
23669Capture something. 23811Capture something.
23670\\<org-capture-mode-map> 23812\\<org-capture-mode-map>
23671This will let you select a template from `org-capture-templates', and then 23813This will let you select a template from `org-capture-templates', and
23672file the newly captured information. The text is immediately inserted 23814then file the newly captured information. The text is immediately
23673at the target location, and an indirect buffer is shown where you can 23815inserted at the target location, and an indirect buffer is shown where
23674edit it. Pressing \\[org-capture-finalize] brings you back to the previous state 23816you can edit it. Pressing `\\[org-capture-finalize]' brings you back to the previous
23675of Emacs, so that you can continue your work. 23817state of Emacs, so that you can continue your work.
23818
23819When called interactively with a `\\[universal-argument]' prefix argument GOTO, don't
23820capture anything, just go to the file/headline where the selected
23821template stores its notes.
23676 23822
23677When called interactively with a \\[universal-argument] prefix argument GOTO, don't capture 23823With a `\\[universal-argument] \\[universal-argument]' prefix argument, go to the last note stored.
23678anything, just go to the file/headline where the selected template
23679stores its notes. With a double prefix argument \\[universal-argument] \\[universal-argument], go to the last note
23680stored.
23681 23824
23682When called with a `C-0' (zero) prefix, insert a template at point. 23825When called with a `C-0' (zero) prefix, insert a template at point.
23683 23826
@@ -23723,26 +23866,29 @@ Remove all currently active column overlays.
23723\(fn)" nil nil) 23866\(fn)" nil nil)
23724 23867
23725(autoload 'org-columns "org-colview" "\ 23868(autoload 'org-columns "org-colview" "\
23726Turn on column view on an org-mode file. 23869Turn on column view on an Org mode file.
23870
23871Column view applies to the whole buffer if point is before the
23872first headline. Otherwise, it applies to the first ancestor
23873setting \"COLUMNS\" property. If there is none, it defaults to
23874the current headline. With a `\\[universal-argument]' prefix argument, turn on column
23875view for the whole buffer unconditionally.
23876
23727When COLUMNS-FMT-STRING is non-nil, use it as the column format. 23877When COLUMNS-FMT-STRING is non-nil, use it as the column format.
23728 23878
23729\(fn &optional COLUMNS-FMT-STRING)" t nil) 23879\(fn &optional GLOBAL COLUMNS-FMT-STRING)" t nil)
23730 23880
23731(autoload 'org-columns-compute "org-colview" "\ 23881(autoload 'org-columns-compute "org-colview" "\
23732Sum the values of property PROPERTY hierarchically, for the entire buffer. 23882Summarize the values of PROPERTY hierarchically.
23883Also update existing values for PROPERTY according to the first
23884column specification.
23733 23885
23734\(fn PROPERTY)" t nil) 23886\(fn PROPERTY)" t nil)
23735 23887
23736(autoload 'org-columns-number-to-string "org-colview" "\
23737Convert a computed column number to a string value, according to FMT.
23738
23739\(fn N FMT &optional PRINTF)" nil nil)
23740
23741(autoload 'org-dblock-write:columnview "org-colview" "\ 23888(autoload 'org-dblock-write:columnview "org-colview" "\
23742Write the column view table. 23889Write the column view table.
23743PARAMS is a property list of parameters: 23890PARAMS is a property list of parameters:
23744 23891
23745:width enforce same column widths with <N> specifiers.
23746:id the :ID: property of the entry where the columns view 23892:id the :ID: property of the entry where the columns view
23747 should be built. When the symbol `local', call locally. 23893 should be built. When the symbol `local', call locally.
23748 When `global' call column view with the cursor at the beginning 23894 When `global' call column view with the cursor at the beginning
@@ -23752,15 +23898,17 @@ PARAMS is a property list of parameters:
23752 using `org-id-find'. 23898 using `org-id-find'.
23753:hlines When t, insert a hline before each item. When a number, insert 23899:hlines When t, insert a hline before each item. When a number, insert
23754 a hline before each level <= that number. 23900 a hline before each level <= that number.
23901:indent When non-nil, indent each ITEM field according to its level.
23755:vlines When t, make each column a colgroup to enforce vertical lines. 23902:vlines When t, make each column a colgroup to enforce vertical lines.
23756:maxlevel When set to a number, don't capture headlines below this level. 23903:maxlevel When set to a number, don't capture headlines below this level.
23757:skip-empty-rows 23904:skip-empty-rows
23758 When t, skip rows where all specifiers other than ITEM are empty. 23905 When t, skip rows where all specifiers other than ITEM are empty.
23906:width apply widths specified in columns format using <N> specifiers.
23759:format When non-nil, specify the column view format to use. 23907:format When non-nil, specify the column view format to use.
23760 23908
23761\(fn PARAMS)" nil nil) 23909\(fn PARAMS)" nil nil)
23762 23910
23763(autoload 'org-insert-columns-dblock "org-colview" "\ 23911(autoload 'org-columns-insert-dblock "org-colview" "\
23764Create a dynamic block capturing a column view table. 23912Create a dynamic block capturing a column view table.
23765 23913
23766\(fn)" t nil) 23914\(fn)" t nil)
@@ -23796,7 +23944,7 @@ Try very hard to provide sensible version strings.
23796;;;### (autoloads nil "org-ctags" "org/org-ctags.el" (0 0 0 0)) 23944;;;### (autoloads nil "org-ctags" "org/org-ctags.el" (0 0 0 0))
23797;;; Generated autoloads from org/org-ctags.el 23945;;; Generated autoloads from org/org-ctags.el
23798 23946
23799(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-ctags" '("org-ctags-" "y-or-n-minibuffer"))) 23947(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-ctags" '("org-ctags-")))
23800 23948
23801;;;*** 23949;;;***
23802 23950
@@ -23827,7 +23975,7 @@ Try very hard to provide sensible version strings.
23827;;;;;; 0)) 23975;;;;;; 0))
23828;;; Generated autoloads from org/org-entities.el 23976;;; Generated autoloads from org/org-entities.el
23829 23977
23830(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-entities" '("replace-amp" "org-entit"))) 23978(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-entities" '("org-entit")))
23831 23979
23832;;;*** 23980;;;***
23833 23981
@@ -23838,6 +23986,13 @@ Try very hard to provide sensible version strings.
23838 23986
23839;;;*** 23987;;;***
23840 23988
23989;;;### (autoloads nil "org-eww" "org/org-eww.el" (0 0 0 0))
23990;;; Generated autoloads from org/org-eww.el
23991
23992(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-eww" '("org-eww-")))
23993
23994;;;***
23995
23841;;;### (autoloads nil "org-faces" "org/org-faces.el" (0 0 0 0)) 23996;;;### (autoloads nil "org-faces" "org/org-faces.el" (0 0 0 0))
23842;;; Generated autoloads from org/org-faces.el 23997;;; Generated autoloads from org/org-faces.el
23843 23998
@@ -23864,7 +24019,7 @@ Try very hard to provide sensible version strings.
23864;;;### (autoloads nil "org-gnus" "org/org-gnus.el" (0 0 0 0)) 24019;;;### (autoloads nil "org-gnus" "org/org-gnus.el" (0 0 0 0))
23865;;; Generated autoloads from org/org-gnus.el 24020;;; Generated autoloads from org/org-gnus.el
23866 24021
23867(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-gnus" '("org-gnus-"))) 24022(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-gnus" '("org-")))
23868 24023
23869;;;*** 24024;;;***
23870 24025
@@ -23914,6 +24069,24 @@ Try very hard to provide sensible version strings.
23914 24069
23915;;;*** 24070;;;***
23916 24071
24072;;;### (autoloads nil "org-lint" "org/org-lint.el" (0 0 0 0))
24073;;; Generated autoloads from org/org-lint.el
24074
24075(autoload 'org-lint "org-lint" "\
24076Check current Org buffer for syntax mistakes.
24077
24078By default, run all checkers. With a `\\[universal-argument]' prefix ARG, select one
24079category of checkers only. With a `\\[universal-argument] \\[universal-argument]' prefix, run one precise
24080checker by its name.
24081
24082ARG can also be a list of checker names, as symbols, to run.
24083
24084\(fn &optional ARG)" t nil)
24085
24086(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-lint" '("org-lint-")))
24087
24088;;;***
24089
23917;;;### (autoloads nil "org-list" "org/org-list.el" (0 0 0 0)) 24090;;;### (autoloads nil "org-list" "org/org-list.el" (0 0 0 0))
23918;;; Generated autoloads from org/org-list.el 24091;;; Generated autoloads from org/org-list.el
23919 24092
@@ -23932,7 +24105,7 @@ Try very hard to provide sensible version strings.
23932;;; Generated autoloads from org/org-macs.el 24105;;; Generated autoloads from org/org-macs.el
23933 24106
23934(autoload 'org-load-noerror-mustsuffix "org-macs" "\ 24107(autoload 'org-load-noerror-mustsuffix "org-macs" "\
23935Load FILE with optional arguments NOERROR and MUSTSUFFIX. Drop the MUSTSUFFIX argument for XEmacs, which doesn't recognize it. 24108Load FILE with optional arguments NOERROR and MUSTSUFFIX.
23936 24109
23937\(fn FILE)" nil t) 24110\(fn FILE)" nil t)
23938 24111
@@ -24004,7 +24177,7 @@ Load FILE with optional arguments NOERROR and MUSTSUFFIX. Drop the MUSTSUFFIX a
24004;;;;;; (0 0 0 0)) 24177;;;;;; (0 0 0 0))
24005;;; Generated autoloads from org/org-table.el 24178;;; Generated autoloads from org/org-table.el
24006 24179
24007(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-table" '("org" "*orgtbl-"))) 24180(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-table" '("org")))
24008 24181
24009;;;*** 24182;;;***
24010 24183
@@ -24020,14 +24193,14 @@ Load FILE with optional arguments NOERROR and MUSTSUFFIX. Drop the MUSTSUFFIX a
24020;;; Generated autoloads from org/org-version.el 24193;;; Generated autoloads from org/org-version.el
24021 24194
24022(autoload 'org-release "org-version" "\ 24195(autoload 'org-release "org-version" "\
24023The release version of org-mode. 24196The release version of Org.
24024 Inserted by installing org-mode or when a release is made. 24197Inserted by installing Org mode or when a release is made.
24025 24198
24026\(fn)" nil nil) 24199\(fn)" nil nil)
24027 24200
24028(autoload 'org-git-version "org-version" "\ 24201(autoload 'org-git-version "org-version" "\
24029The Git version of org-mode. 24202The Git version of org-mode.
24030 Inserted by installing org-mode or when a release is made. 24203Inserted by installing Org or when a release is made.
24031 24204
24032\(fn)" nil nil) 24205\(fn)" nil nil)
24033 24206
@@ -26220,7 +26393,7 @@ Optional argument FACE specifies the face to do the highlighting.
26220;;; Generated autoloads from progmodes/python.el 26393;;; Generated autoloads from progmodes/python.el
26221(push (purecopy '(python 0 25 2)) package--builtin-versions) 26394(push (purecopy '(python 0 25 2)) package--builtin-versions)
26222 26395
26223(add-to-list 'auto-mode-alist (cons (purecopy "\\.pyw?\\'") 'python-mode)) 26396(add-to-list 'auto-mode-alist (cons (purecopy "\\.py[iw]?\\'") 'python-mode))
26224 26397
26225(add-to-list 'interpreter-mode-alist (cons (purecopy "python[0-9.]*") 'python-mode)) 26398(add-to-list 'interpreter-mode-alist (cons (purecopy "python[0-9.]*") 'python-mode))
26226 26399
@@ -34153,7 +34326,7 @@ Reenable Ange-FTP, when Tramp is unloaded.
34153 34326
34154;;;### (autoloads nil "trampver" "net/trampver.el" (0 0 0 0)) 34327;;;### (autoloads nil "trampver" "net/trampver.el" (0 0 0 0))
34155;;; Generated autoloads from net/trampver.el 34328;;; Generated autoloads from net/trampver.el
34156(push (purecopy '(tramp 2 3 2)) package--builtin-versions) 34329(push (purecopy '(tramp 2 3 3 -1)) package--builtin-versions)
34157 34330
34158(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "trampver" '("tramp-"))) 34331(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "trampver" '("tramp-")))
34159 34332