; Auto-commit of loaddefs files.
This commit is contained in:
parent
304278c040
commit
dde91a37ea
1 changed files with 21 additions and 11 deletions
|
@ -1969,7 +1969,8 @@ result. The overhead of the `lambda's is accounted for.
|
|||
|
||||
(autoload 'benchmark "benchmark" "\
|
||||
Print the time taken for REPETITIONS executions of FORM.
|
||||
Interactively, REPETITIONS is taken from the prefix arg.
|
||||
Interactively, REPETITIONS is taken from the prefix arg, and
|
||||
the command prompts for the form to benchmark.
|
||||
For non-interactive use see also `benchmark-run' and
|
||||
`benchmark-run-compiled'.
|
||||
|
||||
|
@ -2927,6 +2928,7 @@ Like `bug-reference-mode', but only buttonize in comments and strings.
|
|||
(put 'byte-compile-dynamic 'safe-local-variable 'booleanp)
|
||||
(put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp)
|
||||
(put 'byte-compile-dynamic-docstrings 'safe-local-variable 'booleanp)
|
||||
(put 'byte-compile-error-on-warn 'safe-local-variable 'booleanp)
|
||||
|
||||
(put 'byte-compile-warnings 'safe-local-variable (lambda (v) (or (symbolp v) (null (delq nil (mapcar (lambda (x) (not (symbolp x))) v))))))
|
||||
|
||||
|
@ -6192,7 +6194,7 @@ For example, the MH-E package updates this alist as follows:
|
|||
|
||||
The value of PACKAGE needs to be unique and it needs to match the
|
||||
PACKAGE value appearing in the :package-version keyword. Since
|
||||
the user might see the value in a error message, a good choice is
|
||||
the user might see the value in an error message, a good choice is
|
||||
the official name of the package, such as MH-E or Gnus.")
|
||||
|
||||
(defalias 'customize-changed 'customize-changed-options)
|
||||
|
@ -9809,8 +9811,11 @@ the mode if ARG is omitted or nil.
|
|||
|
||||
Electric Pair mode is a global minor mode. When enabled, typing
|
||||
an open parenthesis automatically inserts the corresponding
|
||||
closing parenthesis. (Likewise for brackets, etc.). To toggle
|
||||
the mode in a single buffer, use `electric-pair-local-mode'.
|
||||
closing parenthesis, and vice versa. (Likewise for brackets, etc.).
|
||||
If the region is active, the parentheses (brackets, etc.) are
|
||||
inserted around the region instead.
|
||||
|
||||
To toggle the mode in a single buffer, use `electric-pair-local-mode'.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
|
@ -9889,7 +9894,8 @@ FUNSYM must be a symbol of a defined function.
|
|||
(autoload 'elp-instrument-list "elp" "\
|
||||
Instrument, for profiling, all functions in `elp-function-list'.
|
||||
Use optional LIST if provided instead.
|
||||
If called interactively, read LIST using the minibuffer.
|
||||
If called interactively, prompt for LIST in the minibuffer;
|
||||
type \"nil\" to use `elp-function-list'.
|
||||
|
||||
\(fn &optional LIST)" t nil)
|
||||
|
||||
|
@ -16725,7 +16731,7 @@ See the documentation for `calendar-holidays' for details.")
|
|||
(autoload 'holidays "holidays" "\
|
||||
Display the holidays for last month, this month, and next month.
|
||||
If called with an optional prefix argument ARG, prompts for month and year.
|
||||
This function is suitable for execution in a init file.
|
||||
This function is suitable for execution in an init file.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
|
@ -18113,8 +18119,8 @@ If non-nil this pattern is passed to `imenu--generic-function' to
|
|||
create a buffer index.
|
||||
|
||||
For example, see the value of `fortran-imenu-generic-expression'
|
||||
used by `fortran-mode' with `imenu-syntax-alist' set locally to
|
||||
give the characters which normally have \"symbol\" syntax
|
||||
used by `fortran-mode' with `imenu-syntax-alist' set locally so that
|
||||
characters which normally have \"symbol\" syntax are considered to have
|
||||
\"word\" syntax during matching.")
|
||||
(put 'imenu-generic-expression 'risky-local-variable t)
|
||||
|
||||
|
@ -23452,6 +23458,7 @@ Coloring:
|
|||
|
||||
;;;### (autoloads nil "org" "org/org.el" (0 0 0 0))
|
||||
;;; Generated autoloads from org/org.el
|
||||
(push (purecopy '(org 9 1 6)) package--builtin-versions)
|
||||
|
||||
(autoload 'org-babel-do-load-languages "org" "\
|
||||
Load the languages defined in `org-babel-load-languages'.
|
||||
|
@ -31931,7 +31938,7 @@ Args are NAME BUFFER HOST PORT.
|
|||
NAME is name for process. It is modified if necessary to make it unique.
|
||||
BUFFER is the buffer (or `buffer-name') to associate with the process.
|
||||
Process output goes at end of that buffer, unless you specify
|
||||
an output stream or filter function to handle the output.
|
||||
a filter function to handle the output.
|
||||
BUFFER may be also nil, meaning that this process is not associated
|
||||
with any buffer
|
||||
Third arg is name of the host to connect to, or its IP address.
|
||||
|
@ -34271,7 +34278,7 @@ Todo mode revisit this file or, with option
|
|||
file was last visited.
|
||||
|
||||
If you call this command before you have created any todo file in
|
||||
the current format, and you have an todo file in old format, it
|
||||
the current format, and you have a todo file in old format, it
|
||||
will ask you whether to convert that file and show it.
|
||||
Otherwise, calling this command before any todo file exists
|
||||
prompts for a file name and an initial category (defaulting to
|
||||
|
@ -36067,7 +36074,10 @@ When called interactively with a prefix argument, prompt for REMOTE-LOCATION.
|
|||
\(fn &optional REMOTE-LOCATION)" t nil)
|
||||
|
||||
(autoload 'vc-region-history "vc" "\
|
||||
Show the history of the region FROM..TO.
|
||||
Show the history of the region between FROM and TO.
|
||||
|
||||
If called interactively, show the history between point and
|
||||
mark.
|
||||
|
||||
\(fn FROM TO)" t nil)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue