aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ldefs-boot.el32
1 files changed, 21 insertions, 11 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index 4ad8763e842..95d5be7734b 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -1969,7 +1969,8 @@ result. The overhead of the `lambda's is accounted for.
1969 1969
1970(autoload 'benchmark "benchmark" "\ 1970(autoload 'benchmark "benchmark" "\
1971Print the time taken for REPETITIONS executions of FORM. 1971Print the time taken for REPETITIONS executions of FORM.
1972Interactively, REPETITIONS is taken from the prefix arg. 1972Interactively, REPETITIONS is taken from the prefix arg, and
1973the command prompts for the form to benchmark.
1973For non-interactive use see also `benchmark-run' and 1974For non-interactive use see also `benchmark-run' and
1974`benchmark-run-compiled'. 1975`benchmark-run-compiled'.
1975 1976
@@ -2927,6 +2928,7 @@ Like `bug-reference-mode', but only buttonize in comments and strings.
2927(put 'byte-compile-dynamic 'safe-local-variable 'booleanp) 2928(put 'byte-compile-dynamic 'safe-local-variable 'booleanp)
2928(put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) 2929(put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp)
2929(put 'byte-compile-dynamic-docstrings 'safe-local-variable 'booleanp) 2930(put 'byte-compile-dynamic-docstrings 'safe-local-variable 'booleanp)
2931(put 'byte-compile-error-on-warn 'safe-local-variable 'booleanp)
2930 2932
2931(put 'byte-compile-warnings 'safe-local-variable (lambda (v) (or (symbolp v) (null (delq nil (mapcar (lambda (x) (not (symbolp x))) v)))))) 2933(put 'byte-compile-warnings 'safe-local-variable (lambda (v) (or (symbolp v) (null (delq nil (mapcar (lambda (x) (not (symbolp x))) v))))))
2932 2934
@@ -6192,7 +6194,7 @@ For example, the MH-E package updates this alist as follows:
6192 6194
6193The value of PACKAGE needs to be unique and it needs to match the 6195The value of PACKAGE needs to be unique and it needs to match the
6194PACKAGE value appearing in the :package-version keyword. Since 6196PACKAGE value appearing in the :package-version keyword. Since
6195the user might see the value in a error message, a good choice is 6197the user might see the value in an error message, a good choice is
6196the official name of the package, such as MH-E or Gnus.") 6198the official name of the package, such as MH-E or Gnus.")
6197 6199
6198(defalias 'customize-changed 'customize-changed-options) 6200(defalias 'customize-changed 'customize-changed-options)
@@ -9809,8 +9811,11 @@ the mode if ARG is omitted or nil.
9809 9811
9810Electric Pair mode is a global minor mode. When enabled, typing 9812Electric Pair mode is a global minor mode. When enabled, typing
9811an open parenthesis automatically inserts the corresponding 9813an open parenthesis automatically inserts the corresponding
9812closing parenthesis. (Likewise for brackets, etc.). To toggle 9814closing parenthesis, and vice versa. (Likewise for brackets, etc.).
9813the mode in a single buffer, use `electric-pair-local-mode'. 9815If the region is active, the parentheses (brackets, etc.) are
9816inserted around the region instead.
9817
9818To toggle the mode in a single buffer, use `electric-pair-local-mode'.
9814 9819
9815\(fn &optional ARG)" t nil) 9820\(fn &optional ARG)" t nil)
9816 9821
@@ -9889,7 +9894,8 @@ FUNSYM must be a symbol of a defined function.
9889(autoload 'elp-instrument-list "elp" "\ 9894(autoload 'elp-instrument-list "elp" "\
9890Instrument, for profiling, all functions in `elp-function-list'. 9895Instrument, for profiling, all functions in `elp-function-list'.
9891Use optional LIST if provided instead. 9896Use optional LIST if provided instead.
9892If called interactively, read LIST using the minibuffer. 9897If called interactively, prompt for LIST in the minibuffer;
9898type \"nil\" to use `elp-function-list'.
9893 9899
9894\(fn &optional LIST)" t nil) 9900\(fn &optional LIST)" t nil)
9895 9901
@@ -16725,7 +16731,7 @@ See the documentation for `calendar-holidays' for details.")
16725(autoload 'holidays "holidays" "\ 16731(autoload 'holidays "holidays" "\
16726Display the holidays for last month, this month, and next month. 16732Display the holidays for last month, this month, and next month.
16727If called with an optional prefix argument ARG, prompts for month and year. 16733If called with an optional prefix argument ARG, prompts for month and year.
16728This function is suitable for execution in a init file. 16734This function is suitable for execution in an init file.
16729 16735
16730\(fn &optional ARG)" t nil) 16736\(fn &optional ARG)" t nil)
16731 16737
@@ -18113,8 +18119,8 @@ If non-nil this pattern is passed to `imenu--generic-function' to
18113create a buffer index. 18119create a buffer index.
18114 18120
18115For example, see the value of `fortran-imenu-generic-expression' 18121For example, see the value of `fortran-imenu-generic-expression'
18116used by `fortran-mode' with `imenu-syntax-alist' set locally to 18122used by `fortran-mode' with `imenu-syntax-alist' set locally so that
18117give the characters which normally have \"symbol\" syntax 18123characters which normally have \"symbol\" syntax are considered to have
18118\"word\" syntax during matching.") 18124\"word\" syntax during matching.")
18119(put 'imenu-generic-expression 'risky-local-variable t) 18125(put 'imenu-generic-expression 'risky-local-variable t)
18120 18126
@@ -23452,6 +23458,7 @@ Coloring:
23452 23458
23453;;;### (autoloads nil "org" "org/org.el" (0 0 0 0)) 23459;;;### (autoloads nil "org" "org/org.el" (0 0 0 0))
23454;;; Generated autoloads from org/org.el 23460;;; Generated autoloads from org/org.el
23461(push (purecopy '(org 9 1 6)) package--builtin-versions)
23455 23462
23456(autoload 'org-babel-do-load-languages "org" "\ 23463(autoload 'org-babel-do-load-languages "org" "\
23457Load the languages defined in `org-babel-load-languages'. 23464Load the languages defined in `org-babel-load-languages'.
@@ -31931,7 +31938,7 @@ Args are NAME BUFFER HOST PORT.
31931NAME is name for process. It is modified if necessary to make it unique. 31938NAME is name for process. It is modified if necessary to make it unique.
31932BUFFER is the buffer (or `buffer-name') to associate with the process. 31939BUFFER is the buffer (or `buffer-name') to associate with the process.
31933 Process output goes at end of that buffer, unless you specify 31940 Process output goes at end of that buffer, unless you specify
31934 an output stream or filter function to handle the output. 31941 a filter function to handle the output.
31935 BUFFER may be also nil, meaning that this process is not associated 31942 BUFFER may be also nil, meaning that this process is not associated
31936 with any buffer 31943 with any buffer
31937Third arg is name of the host to connect to, or its IP address. 31944Third 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
34271file was last visited. 34278file was last visited.
34272 34279
34273If you call this command before you have created any todo file in 34280If you call this command before you have created any todo file in
34274the current format, and you have an todo file in old format, it 34281the current format, and you have a todo file in old format, it
34275will ask you whether to convert that file and show it. 34282will ask you whether to convert that file and show it.
34276Otherwise, calling this command before any todo file exists 34283Otherwise, calling this command before any todo file exists
34277prompts for a file name and an initial category (defaulting to 34284prompts 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.
36067\(fn &optional REMOTE-LOCATION)" t nil) 36074\(fn &optional REMOTE-LOCATION)" t nil)
36068 36075
36069(autoload 'vc-region-history "vc" "\ 36076(autoload 'vc-region-history "vc" "\
36070Show the history of the region FROM..TO. 36077Show the history of the region between FROM and TO.
36078
36079If called interactively, show the history between point and
36080mark.
36071 36081
36072\(fn FROM TO)" t nil) 36082\(fn FROM TO)" t nil)
36073 36083