aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2020-05-01 06:27:00 -0700
committerGlenn Morris2020-05-01 06:27:00 -0700
commit9f3f1692767779a243a32d82f20eb8ffa5369920 (patch)
treedce44911d53d2218919909b9b5d2ef76f078227e
parenta4c07bc8c8201a620c4365c1d0d2cb814cc677a9 (diff)
downloademacs-9f3f1692767779a243a32d82f20eb8ffa5369920.tar.gz
emacs-9f3f1692767779a243a32d82f20eb8ffa5369920.zip
; Auto-commit of loaddefs files.
-rw-r--r--lisp/ldefs-boot.el90
1 files changed, 77 insertions, 13 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index e1f238c7d89..d49c7523848 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -1076,7 +1076,7 @@ search for matches for any two (or more) of those words.
1076With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, 1076With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil,
1077consider all symbols (if they match PATTERN). 1077consider all symbols (if they match PATTERN).
1078 1078
1079Returns list of symbols and documentation found. 1079Return list of symbols and documentation found.
1080 1080
1081\(fn PATTERN &optional DO-ALL)" t nil) 1081\(fn PATTERN &optional DO-ALL)" t nil)
1082 1082
@@ -4745,6 +4745,34 @@ and runs the normal hook `command-history-hook'." t nil)
4745 4745
4746;;;*** 4746;;;***
4747 4747
4748;;;### (autoloads nil "cl-font-lock" "progmodes/cl-font-lock.el"
4749;;;;;; (0 0 0 0))
4750;;; Generated autoloads from progmodes/cl-font-lock.el
4751
4752(defvar cl-font-lock-built-in-mode nil "\
4753Non-nil if Cl-Font-Lock-Built-In mode is enabled.
4754See the `cl-font-lock-built-in-mode' command
4755for a description of this minor mode.
4756Setting this variable directly does not take effect;
4757either customize it (see the info node `Easy Customization')
4758or call the function `cl-font-lock-built-in-mode'.")
4759
4760(custom-autoload 'cl-font-lock-built-in-mode "cl-font-lock" nil)
4761
4762(autoload 'cl-font-lock-built-in-mode "cl-font-lock" "\
4763Highlight built-in functions, variables, and types in `lisp-mode'.
4764
4765If called interactively, enable Cl-Font-Lock-Built-In mode if ARG is
4766positive, and disable it if ARG is zero or negative. If called from
4767Lisp, also enable the mode if ARG is omitted or nil, and toggle it if
4768ARG is `toggle'; disable the mode otherwise.
4769
4770\(fn &optional ARG)" t nil)
4771
4772(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cl-font-lock" '("cl-font-lock-")))
4773
4774;;;***
4775
4748;;;### (autoloads nil "cl-generic" "emacs-lisp/cl-generic.el" (0 4776;;;### (autoloads nil "cl-generic" "emacs-lisp/cl-generic.el" (0
4749;;;;;; 0 0 0)) 4777;;;;;; 0 0 0))
4750;;; Generated autoloads from emacs-lisp/cl-generic.el 4778;;; Generated autoloads from emacs-lisp/cl-generic.el
@@ -12751,6 +12779,13 @@ Interactively, prompt for LIBRARY using the one at or near point.
12751 12779
12752\(fn LIBRARY)" t nil) 12780\(fn LIBRARY)" t nil)
12753 12781
12782(autoload 'read-library-name "find-func" "\
12783Read and return a library name, defaulting to the one near point.
12784
12785A library name is the filename of an Emacs Lisp library located
12786in a directory under `load-path' (or `find-function-source-path',
12787if non-nil)." nil nil)
12788
12754(autoload 'find-library-other-window "find-func" "\ 12789(autoload 'find-library-other-window "find-func" "\
12755Find the Emacs Lisp source of LIBRARY in another window. 12790Find the Emacs Lisp source of LIBRARY in another window.
12756 12791
@@ -12918,7 +12953,7 @@ Find directly the variable at point in the other window." t nil)
12918(autoload 'find-function-setup-keys "find-func" "\ 12953(autoload 'find-function-setup-keys "find-func" "\
12919Define some key bindings for the find-function family of functions." nil nil) 12954Define some key bindings for the find-function family of functions." nil nil)
12920 12955
12921(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "find-func" '("find-" "read-library-name"))) 12956(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "find-func" '("find-")))
12922 12957
12923;;;*** 12958;;;***
12924 12959
@@ -15360,9 +15395,13 @@ arguments as NAME. DO is a function as defined in `gv-get'.
15360 15395
15361\(fn SYMBOL NAME ARGS HANDLER &optional FIX)" nil nil) 15396\(fn SYMBOL NAME ARGS HANDLER &optional FIX)" nil nil)
15362 15397
15363(or (assq 'gv-expander defun-declarations-alist) (let ((x `(gv-expander ,(apply-partially #'gv--defun-declaration 'gv-expander)))) (push x macro-declarations-alist) (push x defun-declarations-alist))) 15398(defsubst gv--expander-defun-declaration (&rest args) (apply #'gv--defun-declaration 'gv-expander args))
15399
15400(defsubst gv--setter-defun-declaration (&rest args) (apply #'gv--defun-declaration 'gv-setter args))
15401
15402(or (assq 'gv-expander defun-declarations-alist) (let ((x (list 'gv-expander #'gv--expander-defun-declaration))) (push x macro-declarations-alist) (push x defun-declarations-alist)))
15364 15403
15365(or (assq 'gv-setter defun-declarations-alist) (push `(gv-setter ,(apply-partially #'gv--defun-declaration 'gv-setter)) defun-declarations-alist)) 15404(or (assq 'gv-setter defun-declarations-alist) (push (list 'gv-setter #'gv--setter-defun-declaration) defun-declarations-alist))
15366 15405
15367(autoload 'gv-define-setter "gv" "\ 15406(autoload 'gv-define-setter "gv" "\
15368Define a setter method for generalized variable NAME. 15407Define a setter method for generalized variable NAME.
@@ -16100,6 +16139,9 @@ of text in those lines.
16100Interactively, prompt for REGEXP using `read-regexp', then FACE. 16139Interactively, prompt for REGEXP using `read-regexp', then FACE.
16101Use the global history list for FACE. 16140Use the global history list for FACE.
16102 16141
16142If REGEXP contains upper case characters (excluding those preceded by `\\')
16143and `search-upper-case' is non-nil, the matching is case-sensitive.
16144
16103Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, 16145Use Font lock mode, if enabled, to highlight REGEXP. Otherwise,
16104use overlays for highlighting. If overlays are used, the 16146use overlays for highlighting. If overlays are used, the
16105highlighting will not update as you type. 16147highlighting will not update as you type.
@@ -16115,11 +16157,18 @@ Use the global history list for FACE. Limit face setting to the
16115corresponding SUBEXP (interactively, the prefix argument) of REGEXP. 16157corresponding SUBEXP (interactively, the prefix argument) of REGEXP.
16116If SUBEXP is omitted or nil, the entire REGEXP is highlighted. 16158If SUBEXP is omitted or nil, the entire REGEXP is highlighted.
16117 16159
16160LIGHTER is a human-readable string that can be used to select
16161a regexp to unhighlight by its name instead of selecting a possibly
16162complex regexp or closure.
16163
16164If REGEXP contains upper case characters (excluding those preceded by `\\')
16165and `search-upper-case' is non-nil, the matching is case-sensitive.
16166
16118Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, 16167Use Font lock mode, if enabled, to highlight REGEXP. Otherwise,
16119use overlays for highlighting. If overlays are used, the 16168use overlays for highlighting. If overlays are used, the
16120highlighting will not update as you type. 16169highlighting will not update as you type.
16121 16170
16122\(fn REGEXP &optional FACE SUBEXP)" t nil) 16171\(fn REGEXP &optional FACE SUBEXP LIGHTER)" t nil)
16123 16172
16124(defalias 'highlight-phrase 'hi-lock-face-phrase-buffer) 16173(defalias 'highlight-phrase 'hi-lock-face-phrase-buffer)
16125 16174
@@ -16128,9 +16177,9 @@ Set face of each match of phrase REGEXP to FACE.
16128Interactively, prompt for REGEXP using `read-regexp', then FACE. 16177Interactively, prompt for REGEXP using `read-regexp', then FACE.
16129Use the global history list for FACE. 16178Use the global history list for FACE.
16130 16179
16131When called interactively, replace whitespace in user-provided 16180If REGEXP contains upper case characters (excluding those preceded by `\\')
16132regexp with arbitrary whitespace, and make initial lower-case 16181and `search-upper-case' is non-nil, the matching is case-sensitive.
16133letters case-insensitive, before highlighting with `hi-lock-set-pattern'. 16182Also set `search-spaces-regexp' to the value of `search-whitespace-regexp'.
16134 16183
16135Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, 16184Use Font lock mode, if enabled, to highlight REGEXP. Otherwise,
16136use overlays for highlighting. If overlays are used, the 16185use overlays for highlighting. If overlays are used, the
@@ -16146,6 +16195,9 @@ Uses the next face from `hi-lock-face-defaults' without prompting,
16146unless you use a prefix argument. 16195unless you use a prefix argument.
16147Uses `find-tag-default-as-symbol-regexp' to retrieve the symbol at point. 16196Uses `find-tag-default-as-symbol-regexp' to retrieve the symbol at point.
16148 16197
16198If REGEXP contains upper case characters (excluding those preceded by `\\')
16199and `search-upper-case' is non-nil, the matching is case-sensitive.
16200
16149This uses Font lock mode if it is enabled; otherwise it uses overlays, 16201This uses Font lock mode if it is enabled; otherwise it uses overlays,
16150in which case the highlighting will not update as you type." t nil) 16202in which case the highlighting will not update as you type." t nil)
16151 16203
@@ -18821,8 +18873,8 @@ Check comments and strings in the current buffer for spelling errors." t nil)
18821Check the current buffer for spelling errors interactively." t nil) 18873Check the current buffer for spelling errors interactively." t nil)
18822 18874
18823(autoload 'ispell-buffer-with-debug "ispell" "\ 18875(autoload 'ispell-buffer-with-debug "ispell" "\
18824`ispell-buffer' with some output sent to `ispell-debug-buffer' buffer. 18876`ispell-buffer' with some output sent to `ispell-debug-buffer'.
18825If APPEND is non-n il, append the info to previous buffer if exists. 18877If APPEND is non-nil, don't erase previous debugging output.
18826 18878
18827\(fn &optional APPEND)" t nil) 18879\(fn &optional APPEND)" t nil)
18828 18880
@@ -21853,7 +21905,7 @@ unless the display width of STR is equal to or less than the display
21853width of ELLIPSIS. If it is non-nil and not a string, then ELLIPSIS 21905width of ELLIPSIS. If it is non-nil and not a string, then ELLIPSIS
21854defaults to `truncate-string-ellipsis'. 21906defaults to `truncate-string-ellipsis'.
21855 21907
21856If ELLIPSIS-TEXT-PROPERTY in non-nil, a too-long string will not 21908If ELLIPSIS-TEXT-PROPERTY is non-nil, a too-long string will not
21857be truncated, but instead the elided parts will be covered by a 21909be truncated, but instead the elided parts will be covered by a
21858`display' text property showing the ellipsis. 21910`display' text property showing the ellipsis.
21859 21911
@@ -22162,6 +22214,10 @@ values:
22162 `ssl' -- Equivalent to `tls'. 22214 `ssl' -- Equivalent to `tls'.
22163 `shell' -- A shell connection. 22215 `shell' -- A shell connection.
22164 22216
22217:coding is a symbol or a cons used to specify the coding systems
22218used to decode and encode the data which the process reads and
22219writes. See `make-network-process' for details.
22220
22165:return-list specifies this function's return value. 22221:return-list specifies this function's return value.
22166 If omitted or nil, return a process object. A non-nil means to 22222 If omitted or nil, return a process object. A non-nil means to
22167 return (PROC . PROPS), where PROC is a process object and PROPS 22223 return (PROC . PROPS), where PROC is a process object and PROPS
@@ -30984,7 +31040,8 @@ as start and end positions), and with `string<' otherwise.
30984\(fn REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN PREDICATE)" nil nil) 31040\(fn REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN PREDICATE)" nil nil)
30985 31041
30986(autoload 'sort-lines "sort" "\ 31042(autoload 'sort-lines "sort" "\
30987Sort lines in region alphabetically; argument means descending order. 31043Sort lines in region alphabetically; REVERSE non-nil means descending order.
31044Interactively, REVERSE is the prefix argument, and BEG and END are the region.
30988Called from a program, there are three arguments: 31045Called from a program, there are three arguments:
30989REVERSE (non-nil means reverse order), BEG and END (region to sort). 31046REVERSE (non-nil means reverse order), BEG and END (region to sort).
30990The variable `sort-fold-case' determines whether alphabetic case affects 31047The variable `sort-fold-case' determines whether alphabetic case affects
@@ -32064,6 +32121,11 @@ The variable list SPEC is the same as in `if-let'.
32064 32121
32065(function-put 'when-let 'lisp-indent-function '1) 32122(function-put 'when-let 'lisp-indent-function '1)
32066 32123
32124(autoload 'string-truncate-left "subr-x" "\
32125Truncate STRING to LENGTH, replacing initial surplus with \"...\".
32126
32127\(fn STRING LENGTH)" nil nil)
32128
32067(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "subr-x" '("and-let*" "hash-table-" "if-let" "internal--" "replace-region-contents" "string-" "thread-" "when-let*"))) 32129(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "subr-x" '("and-let*" "hash-table-" "if-let" "internal--" "replace-region-contents" "string-" "thread-" "when-let*")))
32068 32130
32069;;;*** 32131;;;***
@@ -34460,7 +34522,9 @@ You can call this function to add internal values in the trace buffer.
34460(autoload 'trace-function-foreground "trace" "\ 34522(autoload 'trace-function-foreground "trace" "\
34461Trace calls to function FUNCTION. 34523Trace calls to function FUNCTION.
34462With a prefix argument, also prompt for the trace buffer (default 34524With a prefix argument, also prompt for the trace buffer (default
34463`trace-buffer'), and a Lisp expression CONTEXT. 34525`trace-buffer'), and a Lisp expression CONTEXT. When called from
34526Lisp, CONTEXT should be a function of no arguments which returns
34527a value to insert into BUFFER during the trace.
34464 34528
34465Tracing a function causes every call to that function to insert 34529Tracing a function causes every call to that function to insert
34466into BUFFER Lisp-style trace messages that display the function's 34530into BUFFER Lisp-style trace messages that display the function's