diff options
| author | Glenn Morris | 2018-03-01 06:26:08 -0500 |
|---|---|---|
| committer | Glenn Morris | 2018-03-01 06:26:08 -0500 |
| commit | dde91a37ea6527afabbccc0fd3a6ae830187bc1c (patch) | |
| tree | a335071fbedff294b9c5dfb5775ca2a9488b1cfb | |
| parent | 304278c040bf0d98ae614da83e08fb2b4df55218 (diff) | |
| download | emacs-dde91a37ea6527afabbccc0fd3a6ae830187bc1c.tar.gz emacs-dde91a37ea6527afabbccc0fd3a6ae830187bc1c.zip | |
; Auto-commit of loaddefs files.
| -rw-r--r-- | lisp/ldefs-boot.el | 32 |
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" "\ |
| 1971 | Print the time taken for REPETITIONS executions of FORM. | 1971 | Print the time taken for REPETITIONS executions of FORM. |
| 1972 | Interactively, REPETITIONS is taken from the prefix arg. | 1972 | Interactively, REPETITIONS is taken from the prefix arg, and |
| 1973 | the command prompts for the form to benchmark. | ||
| 1973 | For non-interactive use see also `benchmark-run' and | 1974 | For 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 | ||
| 6193 | The value of PACKAGE needs to be unique and it needs to match the | 6195 | The value of PACKAGE needs to be unique and it needs to match the |
| 6194 | PACKAGE value appearing in the :package-version keyword. Since | 6196 | PACKAGE value appearing in the :package-version keyword. Since |
| 6195 | the user might see the value in a error message, a good choice is | 6197 | the user might see the value in an error message, a good choice is |
| 6196 | the official name of the package, such as MH-E or Gnus.") | 6198 | the 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 | ||
| 9810 | Electric Pair mode is a global minor mode. When enabled, typing | 9812 | Electric Pair mode is a global minor mode. When enabled, typing |
| 9811 | an open parenthesis automatically inserts the corresponding | 9813 | an open parenthesis automatically inserts the corresponding |
| 9812 | closing parenthesis. (Likewise for brackets, etc.). To toggle | 9814 | closing parenthesis, and vice versa. (Likewise for brackets, etc.). |
| 9813 | the mode in a single buffer, use `electric-pair-local-mode'. | 9815 | If the region is active, the parentheses (brackets, etc.) are |
| 9816 | inserted around the region instead. | ||
| 9817 | |||
| 9818 | To 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" "\ |
| 9890 | Instrument, for profiling, all functions in `elp-function-list'. | 9895 | Instrument, for profiling, all functions in `elp-function-list'. |
| 9891 | Use optional LIST if provided instead. | 9896 | Use optional LIST if provided instead. |
| 9892 | If called interactively, read LIST using the minibuffer. | 9897 | If called interactively, prompt for LIST in the minibuffer; |
| 9898 | type \"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" "\ |
| 16726 | Display the holidays for last month, this month, and next month. | 16732 | Display the holidays for last month, this month, and next month. |
| 16727 | If called with an optional prefix argument ARG, prompts for month and year. | 16733 | If called with an optional prefix argument ARG, prompts for month and year. |
| 16728 | This function is suitable for execution in a init file. | 16734 | This 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 | |||
| 18113 | create a buffer index. | 18119 | create a buffer index. |
| 18114 | 18120 | ||
| 18115 | For example, see the value of `fortran-imenu-generic-expression' | 18121 | For example, see the value of `fortran-imenu-generic-expression' |
| 18116 | used by `fortran-mode' with `imenu-syntax-alist' set locally to | 18122 | used by `fortran-mode' with `imenu-syntax-alist' set locally so that |
| 18117 | give the characters which normally have \"symbol\" syntax | 18123 | characters 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" "\ |
| 23457 | Load the languages defined in `org-babel-load-languages'. | 23464 | Load the languages defined in `org-babel-load-languages'. |
| @@ -31931,7 +31938,7 @@ Args are NAME BUFFER HOST PORT. | |||
| 31931 | NAME is name for process. It is modified if necessary to make it unique. | 31938 | NAME is name for process. It is modified if necessary to make it unique. |
| 31932 | BUFFER is the buffer (or `buffer-name') to associate with the process. | 31939 | BUFFER 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 |
| 31937 | Third arg is name of the host to connect to, or its IP address. | 31944 | 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 | |||
| 34271 | file was last visited. | 34278 | file was last visited. |
| 34272 | 34279 | ||
| 34273 | If you call this command before you have created any todo file in | 34280 | If you call this command before you have created any todo file in |
| 34274 | the current format, and you have an todo file in old format, it | 34281 | the current format, and you have a todo file in old format, it |
| 34275 | will ask you whether to convert that file and show it. | 34282 | will ask you whether to convert that file and show it. |
| 34276 | Otherwise, calling this command before any todo file exists | 34283 | Otherwise, calling this command before any todo file exists |
| 34277 | prompts for a file name and an initial category (defaulting to | 34284 | 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. | |||
| 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" "\ |
| 36070 | Show the history of the region FROM..TO. | 36077 | Show the history of the region between FROM and TO. |
| 36078 | |||
| 36079 | If called interactively, show the history between point and | ||
| 36080 | mark. | ||
| 36071 | 36081 | ||
| 36072 | \(fn FROM TO)" t nil) | 36082 | \(fn FROM TO)" t nil) |
| 36073 | 36083 | ||