diff options
| author | Glenn Morris | 2018-10-01 07:23:39 -0400 |
|---|---|---|
| committer | Glenn Morris | 2018-10-01 07:23:39 -0400 |
| commit | 0915462e46157f25022bb6f0f433e40c2e8461be (patch) | |
| tree | 0a4663b1d9015ca72509c9b9c2f27c5f8593f11d | |
| parent | 87d0007499d8434f40926c99f1edc3c4a700a79d (diff) | |
| download | emacs-0915462e46157f25022bb6f0f433e40c2e8461be.tar.gz emacs-0915462e46157f25022bb6f0f433e40c2e8461be.zip | |
; Auto-commit of loaddefs files.
| -rw-r--r-- | lisp/ldefs-boot.el | 107 |
1 files changed, 82 insertions, 25 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index bdf4c315295..5ff089812bb 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -6626,7 +6626,7 @@ buffers accepted by the function pointed out by variable | |||
| 6626 | `dabbrev-friend-buffer-function', if `dabbrev-check-other-buffers' | 6626 | `dabbrev-friend-buffer-function', if `dabbrev-check-other-buffers' |
| 6627 | says so. Then, if `dabbrev-check-all-buffers' is non-nil, look in | 6627 | says so. Then, if `dabbrev-check-all-buffers' is non-nil, look in |
| 6628 | all the other buffers, subject to constraints specified | 6628 | all the other buffers, subject to constraints specified |
| 6629 | by `dabbrev-ignored-buffer-names' and `dabbrev-ignored-regexps'. | 6629 | by `dabbrev-ignored-buffer-names' and `dabbrev-ignored-buffer-regexps'. |
| 6630 | 6630 | ||
| 6631 | A positive prefix argument, N, says to take the Nth backward *distinct* | 6631 | A positive prefix argument, N, says to take the Nth backward *distinct* |
| 6632 | possibility. A negative argument says search forward. | 6632 | possibility. A negative argument says search forward. |
| @@ -11451,7 +11451,9 @@ See documentation of variable `tags-file-name'. | |||
| 11451 | 11451 | ||
| 11452 | (defalias 'pop-tag-mark 'xref-pop-marker-stack) | 11452 | (defalias 'pop-tag-mark 'xref-pop-marker-stack) |
| 11453 | 11453 | ||
| 11454 | (autoload 'next-file "etags" "\ | 11454 | (defalias 'next-file 'tags-next-file) |
| 11455 | |||
| 11456 | (autoload 'tags-next-file "etags" "\ | ||
| 11455 | Select next file among files in current tags table. | 11457 | Select next file among files in current tags table. |
| 11456 | 11458 | ||
| 11457 | A first argument of t (prefix arg, if interactive) initializes to the | 11459 | A first argument of t (prefix arg, if interactive) initializes to the |
| @@ -11471,40 +11473,32 @@ Continue last \\[tags-search] or \\[tags-query-replace] command. | |||
| 11471 | Used noninteractively with non-nil argument to begin such a command (the | 11473 | Used noninteractively with non-nil argument to begin such a command (the |
| 11472 | argument is passed to `next-file', which see). | 11474 | argument is passed to `next-file', which see). |
| 11473 | 11475 | ||
| 11474 | Two variables control the processing we do on each file: the value of | ||
| 11475 | `tags-loop-scan' is a form to be executed on each file to see if it is | ||
| 11476 | interesting (it returns non-nil if so) and `tags-loop-operate' is a form to | ||
| 11477 | evaluate to operate on an interesting file. If the latter evaluates to | ||
| 11478 | nil, we exit; otherwise we scan the next file. | ||
| 11479 | |||
| 11480 | \(fn &optional FIRST-TIME)" t nil) | 11476 | \(fn &optional FIRST-TIME)" t nil) |
| 11481 | 11477 | ||
| 11478 | (make-obsolete 'tags-loop-continue 'multifile-continue '"27.1") | ||
| 11479 | |||
| 11482 | (autoload 'tags-search "etags" "\ | 11480 | (autoload 'tags-search "etags" "\ |
| 11483 | Search through all files listed in tags table for match for REGEXP. | 11481 | Search through all files listed in tags table for match for REGEXP. |
| 11484 | Stops when a match is found. | 11482 | Stops when a match is found. |
| 11485 | To continue searching for next match, use command \\[tags-loop-continue]. | 11483 | To continue searching for next match, use command \\[tags-loop-continue]. |
| 11486 | 11484 | ||
| 11487 | If FILE-LIST-FORM is non-nil, it should be a form that, when | 11485 | If FILES if non-nil should be a list or an iterator returning the files to search. |
| 11488 | evaluated, will return a list of file names. The search will be | 11486 | The search will be restricted to these files. |
| 11489 | restricted to these files. | ||
| 11490 | 11487 | ||
| 11491 | Also see the documentation of the `tags-file-name' variable. | 11488 | Also see the documentation of the `tags-file-name' variable. |
| 11492 | 11489 | ||
| 11493 | \(fn REGEXP &optional FILE-LIST-FORM)" t nil) | 11490 | \(fn REGEXP &optional FILES)" t nil) |
| 11494 | 11491 | ||
| 11495 | (autoload 'tags-query-replace "etags" "\ | 11492 | (autoload 'tags-query-replace "etags" "\ |
| 11496 | Do `query-replace-regexp' of FROM with TO on all files listed in tags table. | 11493 | Do `query-replace-regexp' of FROM with TO on all files listed in tags table. |
| 11497 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. | 11494 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. |
| 11498 | If you exit (\\[keyboard-quit], RET or q), you can resume the query replace | 11495 | If you exit (\\[keyboard-quit], RET or q), you can resume the query replace |
| 11499 | with the command \\[tags-loop-continue]. | 11496 | with the command \\[tags-loop-continue]. |
| 11500 | Fourth arg FILE-LIST-FORM non-nil means initialize the replacement loop. | 11497 | For non-interactive use, superceded by `multifile-initialize-replace'. |
| 11501 | |||
| 11502 | If FILE-LIST-FORM is non-nil, it is a form to evaluate to | ||
| 11503 | produce the list of files to search. | ||
| 11504 | 11498 | ||
| 11505 | See also the documentation of the variable `tags-file-name'. | 11499 | \(fn FROM TO &optional DELIMITED FILES)" t nil) |
| 11506 | 11500 | ||
| 11507 | \(fn FROM TO &optional DELIMITED FILE-LIST-FORM)" t nil) | 11501 | (set-advertised-calling-convention 'tags-query-replace '(from to &optional delimited) '"27.1") |
| 11508 | 11502 | ||
| 11509 | (autoload 'list-tags "etags" "\ | 11503 | (autoload 'list-tags "etags" "\ |
| 11510 | Display list of tags in file FILE. | 11504 | Display list of tags in file FILE. |
| @@ -11541,7 +11535,7 @@ for \\[find-tag] (which see). | |||
| 11541 | 11535 | ||
| 11542 | \(fn)" nil nil) | 11536 | \(fn)" nil nil) |
| 11543 | 11537 | ||
| 11544 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "etags" '("default-tags-table-function" "etags-" "file-of-tag" "find-tag-" "goto-tag-location-function" "initialize-new-tags-table" "last-tag" "list-tags-function" "next-file-list" "select-tags-table-" "snarf-tag-function" "tag" "verify-tags-table-function" "xref-"))) | 11538 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "etags" '("default-tags-table-function" "etags-" "file-of-tag" "find-tag-" "goto-tag-location-function" "initialize-new-tags-table" "last-tag" "list-tags-function" "select-tags-table-" "snarf-tag-function" "tag" "verify-tags-table-function" "xref-"))) |
| 11545 | 11539 | ||
| 11546 | ;;;*** | 11540 | ;;;*** |
| 11547 | 11541 | ||
| @@ -12631,7 +12625,7 @@ Execute BODY, and unwind connection-local variables. | |||
| 12631 | 12625 | ||
| 12632 | (function-put 'with-connection-local-profiles 'lisp-indent-function '1) | 12626 | (function-put 'with-connection-local-profiles 'lisp-indent-function '1) |
| 12633 | 12627 | ||
| 12634 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "files-x" '("connection-local-" "hack-connection-local-variables" "modify-" "read-file-local-variable"))) | 12628 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "files-x" '("connection-local-" "dir-locals-to-string" "hack-connection-local-variables" "modify-" "read-file-local-variable"))) |
| 12635 | 12629 | ||
| 12636 | ;;;*** | 12630 | ;;;*** |
| 12637 | 12631 | ||
| @@ -16909,6 +16903,9 @@ Define a filter named NAME. | |||
| 16909 | DOCUMENTATION is the documentation of the function. | 16903 | DOCUMENTATION is the documentation of the function. |
| 16910 | READER is a form which should read a qualifier from the user. | 16904 | READER is a form which should read a qualifier from the user. |
| 16911 | DESCRIPTION is a short string describing the filter. | 16905 | DESCRIPTION is a short string describing the filter. |
| 16906 | ACCEPT-LIST is a boolean; if non-nil, the filter accepts either | ||
| 16907 | a single condition or a list of them; in the latter | ||
| 16908 | case the filter is the `or' composition of the conditions. | ||
| 16912 | 16909 | ||
| 16913 | BODY should contain forms which will be evaluated to test whether or | 16910 | BODY should contain forms which will be evaluated to test whether or |
| 16914 | not a particular buffer should be displayed or not. The forms in BODY | 16911 | not a particular buffer should be displayed or not. The forms in BODY |
| @@ -17152,7 +17149,7 @@ See also the variable `idlwave-shell-prompt-pattern'. | |||
| 17152 | 17149 | ||
| 17153 | \(Type \\[describe-mode] in the shell buffer for a list of commands.) | 17150 | \(Type \\[describe-mode] in the shell buffer for a list of commands.) |
| 17154 | 17151 | ||
| 17155 | \(fn &optional ARG QUICK)" t nil) | 17152 | \(fn &optional ARG)" t nil) |
| 17156 | 17153 | ||
| 17157 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "idlw-shell" '("idlwave-"))) | 17154 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "idlw-shell" '("idlwave-"))) |
| 17158 | 17155 | ||
| @@ -22269,6 +22266,41 @@ QUALITY can be: | |||
| 22269 | 22266 | ||
| 22270 | ;;;*** | 22267 | ;;;*** |
| 22271 | 22268 | ||
| 22269 | ;;;### (autoloads nil "multifile" "multifile.el" (0 0 0 0)) | ||
| 22270 | ;;; Generated autoloads from multifile.el | ||
| 22271 | |||
| 22272 | (autoload 'multifile-initialize "multifile" "\ | ||
| 22273 | Initialize a new round of operation on several files. | ||
| 22274 | FILES can be either a list of file names, or an iterator (used with `iter-next') | ||
| 22275 | which returns a file name at each step. | ||
| 22276 | SCAN-FUNCTION is a function called with no argument inside a buffer | ||
| 22277 | and it should return non-nil if that buffer has something on which to operate. | ||
| 22278 | OPERATE-FUNCTION is a function called with no argument; it is expected | ||
| 22279 | to perform the operation on the current file buffer and when done | ||
| 22280 | should return non-nil to mean that we should immediately continue | ||
| 22281 | operating on the next file and nil otherwise. | ||
| 22282 | |||
| 22283 | \(fn FILES SCAN-FUNCTION OPERATE-FUNCTION)" nil nil) | ||
| 22284 | |||
| 22285 | (autoload 'multifile-initialize-search "multifile" "\ | ||
| 22286 | |||
| 22287 | |||
| 22288 | \(fn REGEXP FILES CASE-FOLD)" nil nil) | ||
| 22289 | |||
| 22290 | (autoload 'multifile-initialize-replace "multifile" "\ | ||
| 22291 | Initialize a new round of query&replace on several files. | ||
| 22292 | FROM is a regexp and TO is the replacement to use. | ||
| 22293 | FILES describes the file, as in `multifile-initialize'. | ||
| 22294 | CASE-FOLD can be t, nil, or `default', the latter one meaning to obey | ||
| 22295 | the default setting of `case-fold-search'. | ||
| 22296 | DELIMITED if non-nil means replace only word-delimited matches. | ||
| 22297 | |||
| 22298 | \(fn FROM TO FILES CASE-FOLD &optional DELIMITED)" nil nil) | ||
| 22299 | |||
| 22300 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "multifile" '("multifile-"))) | ||
| 22301 | |||
| 22302 | ;;;*** | ||
| 22303 | |||
| 22272 | ;;;### (autoloads nil "mwheel" "mwheel.el" (0 0 0 0)) | 22304 | ;;;### (autoloads nil "mwheel" "mwheel.el" (0 0 0 0)) |
| 22273 | ;;; Generated autoloads from mwheel.el | 22305 | ;;; Generated autoloads from mwheel.el |
| 22274 | 22306 | ||
| @@ -24850,7 +24882,8 @@ STRING should be on something resembling an RFC2822 string, a la | |||
| 24850 | somewhat liberal in what format it accepts, and will attempt to | 24882 | somewhat liberal in what format it accepts, and will attempt to |
| 24851 | return a \"likely\" value even for somewhat malformed strings. | 24883 | return a \"likely\" value even for somewhat malformed strings. |
| 24852 | The values returned are identical to those of `decode-time', but | 24884 | The values returned are identical to those of `decode-time', but |
| 24853 | any values that are unknown are returned as nil. | 24885 | any unknown values other than DST are returned as nil, and an |
| 24886 | unknown DST value is returned as -1. | ||
| 24854 | 24887 | ||
| 24855 | \(fn STRING)" nil nil) | 24888 | \(fn STRING)" nil nil) |
| 24856 | 24889 | ||
| @@ -26354,6 +26387,20 @@ recognized. | |||
| 26354 | 26387 | ||
| 26355 | \(fn)" t nil) | 26388 | \(fn)" t nil) |
| 26356 | 26389 | ||
| 26390 | (autoload 'project-search "project" "\ | ||
| 26391 | Search for REGEXP in all the files of the project. | ||
| 26392 | Stops when a match is found. | ||
| 26393 | To continue searching for next match, use command \\[multifile-continue]. | ||
| 26394 | |||
| 26395 | \(fn REGEXP)" t nil) | ||
| 26396 | |||
| 26397 | (autoload 'project-query-replace "project" "\ | ||
| 26398 | Search for REGEXP in all the files of the project. | ||
| 26399 | Stops when a match is found. | ||
| 26400 | To continue searching for next match, use command \\[multifile-continue]. | ||
| 26401 | |||
| 26402 | \(fn FROM TO)" t nil) | ||
| 26403 | |||
| 26357 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "project" '("project-"))) | 26404 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "project" '("project-"))) |
| 26358 | 26405 | ||
| 26359 | ;;;*** | 26406 | ;;;*** |
| @@ -33791,15 +33838,17 @@ Return the number at point, or nil if none is found. | |||
| 33791 | 33838 | ||
| 33792 | (autoload 'list-at-point "thingatpt" "\ | 33839 | (autoload 'list-at-point "thingatpt" "\ |
| 33793 | Return the Lisp list at point, or nil if none is found. | 33840 | Return the Lisp list at point, or nil if none is found. |
| 33841 | If IGNORE-COMMENT-OR-STRING is non-nil comments and strings are | ||
| 33842 | treated as white space. | ||
| 33794 | 33843 | ||
| 33795 | \(fn)" nil nil) | 33844 | \(fn &optional IGNORE-COMMENT-OR-STRING)" nil nil) |
| 33796 | 33845 | ||
| 33797 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "thingatpt" '("beginning-of-thing" "define-thing-chars" "end-of-thing" "filename" "form-at-point" "in-string-p" "sentence-at-point" "thing-at-point-" "word-at-point"))) | 33846 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "thingatpt" '("beginning-of-thing" "define-thing-chars" "end-of-thing" "filename" "form-at-point" "in-string-p" "sentence-at-point" "thing-at-point-" "word-at-point"))) |
| 33798 | 33847 | ||
| 33799 | ;;;*** | 33848 | ;;;*** |
| 33800 | 33849 | ||
| 33801 | ;;;### (autoloads nil "thread" "emacs-lisp/thread.el" (0 0 0 0)) | 33850 | ;;;### (autoloads nil "thread" "thread.el" (0 0 0 0)) |
| 33802 | ;;; Generated autoloads from emacs-lisp/thread.el | 33851 | ;;; Generated autoloads from thread.el |
| 33803 | 33852 | ||
| 33804 | (autoload 'thread-handle-event "thread" "\ | 33853 | (autoload 'thread-handle-event "thread" "\ |
| 33805 | Handle thread events, propagated by `thread-signal'. | 33854 | Handle thread events, propagated by `thread-signal'. |
| @@ -33808,6 +33857,14 @@ An EVENT has the format | |||
| 33808 | 33857 | ||
| 33809 | \(fn EVENT)" t nil) | 33858 | \(fn EVENT)" t nil) |
| 33810 | 33859 | ||
| 33860 | (autoload 'list-threads "thread" "\ | ||
| 33861 | Display a list of threads. | ||
| 33862 | |||
| 33863 | \(fn)" t nil) | ||
| 33864 | (put 'list-threads 'disabled "Beware: manually canceling threads can ruin your Emacs session.") | ||
| 33865 | |||
| 33866 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "thread" '("thread-list-"))) | ||
| 33867 | |||
| 33811 | ;;;*** | 33868 | ;;;*** |
| 33812 | 33869 | ||
| 33813 | ;;;### (autoloads nil "thumbs" "thumbs.el" (0 0 0 0)) | 33870 | ;;;### (autoloads nil "thumbs" "thumbs.el" (0 0 0 0)) |