diff options
| author | Glenn Morris | 2016-12-01 06:20:43 -0500 |
|---|---|---|
| committer | Glenn Morris | 2016-12-01 06:20:43 -0500 |
| commit | 7d35b3d33da641b462d22df005266225e799d27f (patch) | |
| tree | 6737fb52324dd4dca2164fe2b10e18700ada7c9c | |
| parent | 04355cb50485f109aabb8e9a815412fbb0d1e750 (diff) | |
| download | emacs-7d35b3d33da641b462d22df005266225e799d27f.tar.gz emacs-7d35b3d33da641b462d22df005266225e799d27f.zip | |
; Auto-commit of loaddefs files.
| -rw-r--r-- | lisp/ldefs-boot.el | 125 |
1 files changed, 84 insertions, 41 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 97a941bae25..406f0456662 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -4725,7 +4725,7 @@ editing and the result is evaluated. | |||
| 4725 | \(fn &optional PATTERN)" t nil) | 4725 | \(fn &optional PATTERN)" t nil) |
| 4726 | 4726 | ||
| 4727 | (autoload 'list-command-history "chistory" "\ | 4727 | (autoload 'list-command-history "chistory" "\ |
| 4728 | List history of commands typed to minibuffer. | 4728 | List history of commands that used the minibuffer. |
| 4729 | The number of commands listed is controlled by `list-command-history-max'. | 4729 | The number of commands listed is controlled by `list-command-history-max'. |
| 4730 | Calls value of `list-command-history-filter' (if non-nil) on each history | 4730 | Calls value of `list-command-history-filter' (if non-nil) on each history |
| 4731 | element to judge if that element should be excluded from the list. | 4731 | element to judge if that element should be excluded from the list. |
| @@ -6383,7 +6383,10 @@ Expands to the most recent, preceding word for which this is a prefix. | |||
| 6383 | If no suitable preceding word is found, words following point are | 6383 | If no suitable preceding word is found, words following point are |
| 6384 | considered. If still no suitable word is found, then look in the | 6384 | considered. If still no suitable word is found, then look in the |
| 6385 | buffers accepted by the function pointed out by variable | 6385 | buffers accepted by the function pointed out by variable |
| 6386 | `dabbrev-friend-buffer-function'. | 6386 | `dabbrev-friend-buffer-function', if `dabbrev-check-other-buffers' |
| 6387 | says so. Then, if `dabbrev-check-all-buffers' is non-nil, look in | ||
| 6388 | all the other buffers, subject to constraints specified | ||
| 6389 | by `dabbrev-ignored-buffer-names' and `dabbrev-ignored-regexps'. | ||
| 6387 | 6390 | ||
| 6388 | A positive prefix argument, N, says to take the Nth backward *distinct* | 6391 | A positive prefix argument, N, says to take the Nth backward *distinct* |
| 6389 | possibility. A negative argument says search forward. | 6392 | possibility. A negative argument says search forward. |
| @@ -8520,6 +8523,7 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry. | |||
| 8520 | \\[Buffer-menu-save] -- mark that buffer to be saved. | 8523 | \\[Buffer-menu-save] -- mark that buffer to be saved. |
| 8521 | \\[Buffer-menu-delete] or \\[Buffer-menu-delete-backwards] -- mark that buffer to be deleted. | 8524 | \\[Buffer-menu-delete] or \\[Buffer-menu-delete-backwards] -- mark that buffer to be deleted. |
| 8522 | \\[Buffer-menu-unmark] -- remove all kinds of marks from current line. | 8525 | \\[Buffer-menu-unmark] -- remove all kinds of marks from current line. |
| 8526 | \\[Buffer-menu-unmark-all] -- remove all kinds of marks from all lines. | ||
| 8523 | \\[Electric-buffer-menu-mode-view-buffer] -- view buffer, returning when done. | 8527 | \\[Electric-buffer-menu-mode-view-buffer] -- view buffer, returning when done. |
| 8524 | \\[Buffer-menu-backup-unmark] -- back up a line and remove marks. | 8528 | \\[Buffer-menu-backup-unmark] -- back up a line and remove marks. |
| 8525 | 8529 | ||
| @@ -12356,7 +12360,54 @@ Copy directory-local variables to the -*- line. | |||
| 12356 | 12360 | ||
| 12357 | \(fn)" t nil) | 12361 | \(fn)" t nil) |
| 12358 | 12362 | ||
| 12359 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "files-x" '("modify-" "read-file-local-variable"))) | 12363 | (defvar enable-connection-local-variables t "\ |
| 12364 | Non-nil means enable use of connection-local variables.") | ||
| 12365 | |||
| 12366 | (autoload 'connection-local-set-classes "files-x" "\ | ||
| 12367 | Add CLASSES for remote servers. | ||
| 12368 | CRITERIA is either a regular expression identifying a remote | ||
| 12369 | server, or a function with one argument IDENTIFICATION, which | ||
| 12370 | returns non-nil when a remote server shall apply CLASS'es | ||
| 12371 | variables. If CRITERIA is nil, it always applies. | ||
| 12372 | CLASSES are the names of a variable class (a symbol). | ||
| 12373 | |||
| 12374 | When a connection to a remote server is opened and CRITERIA | ||
| 12375 | matches to that server, the connection-local variables from CLASSES | ||
| 12376 | are applied to the corresponding process buffer. The variables | ||
| 12377 | for a class are defined using `connection-local-set-class-variables'. | ||
| 12378 | |||
| 12379 | \(fn CRITERIA &rest CLASSES)" nil nil) | ||
| 12380 | |||
| 12381 | (autoload 'connection-local-set-class-variables "files-x" "\ | ||
| 12382 | Map the symbol CLASS to a list of variable settings. | ||
| 12383 | VARIABLES is a list that declares connection-local variables for | ||
| 12384 | the class. An element in VARIABLES is an alist whose elements | ||
| 12385 | are of the form (VAR . VALUE). | ||
| 12386 | |||
| 12387 | When a connection to a remote server is opened, the server's | ||
| 12388 | classes are found. A server may be assigned a class using | ||
| 12389 | `connection-local-set-class'. Then variables are set in the | ||
| 12390 | server's process buffer according to the VARIABLES list of the | ||
| 12391 | class. The list is processed in order. | ||
| 12392 | |||
| 12393 | \(fn CLASS VARIABLES)" nil nil) | ||
| 12394 | |||
| 12395 | (autoload 'hack-connection-local-variables-apply "files-x" "\ | ||
| 12396 | Apply connection-local variables identified by `default-directory'. | ||
| 12397 | Other local variables, like file-local and dir-local variables, | ||
| 12398 | will not be changed. | ||
| 12399 | |||
| 12400 | \(fn)" nil nil) | ||
| 12401 | |||
| 12402 | (autoload 'with-connection-local-classes "files-x" "\ | ||
| 12403 | Apply connection-local variables according to CLASSES in current buffer. | ||
| 12404 | Execute BODY, and unwind connection local variables. | ||
| 12405 | |||
| 12406 | \(fn CLASSES &rest BODY)" nil t) | ||
| 12407 | |||
| 12408 | (function-put 'with-connection-local-classes 'lisp-indent-function '1) | ||
| 12409 | |||
| 12410 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "files-x" '("hack-connection-local-variables" "connection-local-" "modify-" "read-file-local-variable"))) | ||
| 12360 | 12411 | ||
| 12361 | ;;;*** | 12412 | ;;;*** |
| 12362 | 12413 | ||
| @@ -24287,9 +24338,9 @@ any kind of error. | |||
| 24287 | (function-put 'pcase-let 'lisp-indent-function '1) | 24338 | (function-put 'pcase-let 'lisp-indent-function '1) |
| 24288 | 24339 | ||
| 24289 | (autoload 'pcase-dolist "pcase" "\ | 24340 | (autoload 'pcase-dolist "pcase" "\ |
| 24341 | Like `dolist' but where the binding can be a `pcase' pattern. | ||
| 24290 | 24342 | ||
| 24291 | 24343 | \(fn (PATTERN LIST) BODY...)" nil t) | |
| 24292 | \(fn SPEC &rest BODY)" nil t) | ||
| 24293 | 24344 | ||
| 24294 | (function-put 'pcase-dolist 'lisp-indent-function '1) | 24345 | (function-put 'pcase-dolist 'lisp-indent-function '1) |
| 24295 | 24346 | ||
| @@ -27686,7 +27737,10 @@ Start using robin package NAME, which is a string. | |||
| 27686 | ;;; Generated autoloads from rot13.el | 27737 | ;;; Generated autoloads from rot13.el |
| 27687 | 27738 | ||
| 27688 | (autoload 'rot13 "rot13" "\ | 27739 | (autoload 'rot13 "rot13" "\ |
| 27689 | Return ROT13 encryption of OBJECT, a buffer or string. | 27740 | ROT13 encrypt OBJECT, a buffer or string. |
| 27741 | If OBJECT is a buffer, encrypt the region between START and END. | ||
| 27742 | If OBJECT is a string, encrypt it in its entirety, ignoring START | ||
| 27743 | and END, and return the encrypted string. | ||
| 27690 | 27744 | ||
| 27691 | \(fn OBJECT &optional START END)" nil nil) | 27745 | \(fn OBJECT &optional START END)" nil nil) |
| 27692 | 27746 | ||
| @@ -33173,7 +33227,7 @@ TIME should be either a time value or a date-time string. | |||
| 33173 | 33227 | ||
| 33174 | \(fn TIME)" nil nil) | 33228 | \(fn TIME)" nil nil) |
| 33175 | 33229 | ||
| 33176 | (define-obsolete-function-alias 'subtract-time 'time-subtract "25.2") | 33230 | (define-obsolete-function-alias 'subtract-time 'time-subtract "26.1") |
| 33177 | 33231 | ||
| 33178 | (autoload 'date-to-day "time-date" "\ | 33232 | (autoload 'date-to-day "time-date" "\ |
| 33179 | Return the number of days between year 1 and DATE. | 33233 | Return the number of days between year 1 and DATE. |
| @@ -33735,21 +33789,11 @@ On W32 systems, the volume letter must be ignored.") | |||
| 33735 | Value for `tramp-file-name-regexp' for separate remoting. | 33789 | Value for `tramp-file-name-regexp' for separate remoting. |
| 33736 | See `tramp-file-name-structure' for more explanations.") | 33790 | See `tramp-file-name-structure' for more explanations.") |
| 33737 | 33791 | ||
| 33738 | (defconst tramp-file-name-regexp (cond ((equal tramp-syntax 'ftp) tramp-file-name-regexp-unified) ((equal tramp-syntax 'sep) tramp-file-name-regexp-separate) (t (error "Wrong `tramp-syntax' defined"))) "\ | 33792 | (defvar tramp-file-name-regexp (cond ((equal tramp-syntax 'ftp) tramp-file-name-regexp-unified) ((equal tramp-syntax 'sep) tramp-file-name-regexp-separate) (t (error "Wrong `tramp-syntax' defined"))) "\ |
| 33739 | Regular expression matching file names handled by Tramp. | 33793 | Regular expression matching file names handled by Tramp. |
| 33740 | This regexp should match Tramp file names but no other file names. | 33794 | This regexp should match Tramp file names but no other file |
| 33741 | When tramp.el is loaded, this regular expression is prepended to | 33795 | names. When calling `tramp-register-file-name-handlers', the |
| 33742 | `file-name-handler-alist', and that is searched sequentially. Thus, | 33796 | initial value is overwritten by the car of `tramp-file-name-structure'.") |
| 33743 | if the Tramp entry appears rather early in the `file-name-handler-alist' | ||
| 33744 | and is a bit too general, then some files might be considered Tramp | ||
| 33745 | files which are not really Tramp files. | ||
| 33746 | |||
| 33747 | Please note that the entry in `file-name-handler-alist' is made when | ||
| 33748 | this file (tramp.el) is loaded. This means that this variable must be set | ||
| 33749 | before loading tramp.el. Alternatively, `file-name-handler-alist' can be | ||
| 33750 | updated after changing this variable. | ||
| 33751 | |||
| 33752 | Also see `tramp-file-name-structure'.") | ||
| 33753 | 33797 | ||
| 33754 | (defconst tramp-completion-file-name-regexp-unified (if (memq system-type '(cygwin windows-nt)) "\\`/[^/]\\{2,\\}\\'" "\\`/[^/]*\\'") "\ | 33798 | (defconst tramp-completion-file-name-regexp-unified (if (memq system-type '(cygwin windows-nt)) "\\`/[^/]\\{2,\\}\\'" "\\`/[^/]*\\'") "\ |
| 33755 | Value for `tramp-completion-file-name-regexp' for unified remoting. | 33799 | Value for `tramp-completion-file-name-regexp' for unified remoting. |
| @@ -35180,6 +35224,10 @@ backend of FILE. If FILE is not registered, then the | |||
| 35180 | first backend in `vc-handled-backends' that declares itself | 35224 | first backend in `vc-handled-backends' that declares itself |
| 35181 | responsible for FILE is returned. | 35225 | responsible for FILE is returned. |
| 35182 | 35226 | ||
| 35227 | Note that if FILE is a symbolic link, it will not be resolved -- | ||
| 35228 | the responsible backend system for the symbolic link itself will | ||
| 35229 | be reported. | ||
| 35230 | |||
| 35183 | \(fn FILE)" nil nil) | 35231 | \(fn FILE)" nil nil) |
| 35184 | 35232 | ||
| 35185 | (autoload 'vc-next-action "vc" "\ | 35233 | (autoload 'vc-next-action "vc" "\ |
| @@ -37301,13 +37349,13 @@ The problems cleaned up are: | |||
| 37301 | If `whitespace-style' includes the value `empty', remove all | 37349 | If `whitespace-style' includes the value `empty', remove all |
| 37302 | empty lines at beginning and/or end of buffer. | 37350 | empty lines at beginning and/or end of buffer. |
| 37303 | 37351 | ||
| 37304 | 3. 8 or more SPACEs at beginning of line. | 37352 | 3. `tab-width' or more SPACEs at beginning of line. |
| 37305 | If `whitespace-style' includes the value `indentation': | 37353 | If `whitespace-style' includes the value `indentation': |
| 37306 | replace 8 or more SPACEs at beginning of line by TABs, if | 37354 | replace `tab-width' or more SPACEs at beginning of line by |
| 37307 | `indent-tabs-mode' is non-nil; otherwise, replace TABs by | 37355 | TABs, if `indent-tabs-mode' is non-nil; otherwise, replace TABs by |
| 37308 | SPACEs. | 37356 | SPACEs. |
| 37309 | If `whitespace-style' includes the value `indentation::tab', | 37357 | If `whitespace-style' includes the value `indentation::tab', |
| 37310 | replace 8 or more SPACEs at beginning of line by TABs. | 37358 | replace `tab-width' or more SPACEs at beginning of line by TABs. |
| 37311 | If `whitespace-style' includes the value `indentation::space', | 37359 | If `whitespace-style' includes the value `indentation::space', |
| 37312 | replace TABs by SPACEs. | 37360 | replace TABs by SPACEs. |
| 37313 | 37361 | ||
| @@ -37324,7 +37372,7 @@ The problems cleaned up are: | |||
| 37324 | If `whitespace-style' includes the value `trailing', remove | 37372 | If `whitespace-style' includes the value `trailing', remove |
| 37325 | all SPACEs or TABs at end of line. | 37373 | all SPACEs or TABs at end of line. |
| 37326 | 37374 | ||
| 37327 | 6. 8 or more SPACEs after TAB. | 37375 | 6. `tab-width' or more SPACEs after TAB. |
| 37328 | If `whitespace-style' includes the value `space-after-tab': | 37376 | If `whitespace-style' includes the value `space-after-tab': |
| 37329 | replace SPACEs by TABs, if `indent-tabs-mode' is non-nil; | 37377 | replace SPACEs by TABs, if `indent-tabs-mode' is non-nil; |
| 37330 | otherwise, replace TABs by SPACEs. | 37378 | otherwise, replace TABs by SPACEs. |
| @@ -37343,13 +37391,13 @@ Cleanup some blank problems at region. | |||
| 37343 | 37391 | ||
| 37344 | The problems cleaned up are: | 37392 | The problems cleaned up are: |
| 37345 | 37393 | ||
| 37346 | 1. 8 or more SPACEs at beginning of line. | 37394 | 1. `tab-width' or more SPACEs at beginning of line. |
| 37347 | If `whitespace-style' includes the value `indentation': | 37395 | If `whitespace-style' includes the value `indentation': |
| 37348 | replace 8 or more SPACEs at beginning of line by TABs, if | 37396 | replace `tab-width' or more SPACEs at beginning of line by TABs, |
| 37349 | `indent-tabs-mode' is non-nil; otherwise, replace TABs by | 37397 | if `indent-tabs-mode' is non-nil; otherwise, replace TABs by |
| 37350 | SPACEs. | 37398 | SPACEs. |
| 37351 | If `whitespace-style' includes the value `indentation::tab', | 37399 | If `whitespace-style' includes the value `indentation::tab', |
| 37352 | replace 8 or more SPACEs at beginning of line by TABs. | 37400 | replace `tab-width' or more SPACEs at beginning of line by TABs. |
| 37353 | If `whitespace-style' includes the value `indentation::space', | 37401 | If `whitespace-style' includes the value `indentation::space', |
| 37354 | replace TABs by SPACEs. | 37402 | replace TABs by SPACEs. |
| 37355 | 37403 | ||
| @@ -37366,7 +37414,7 @@ The problems cleaned up are: | |||
| 37366 | If `whitespace-style' includes the value `trailing', remove | 37414 | If `whitespace-style' includes the value `trailing', remove |
| 37367 | all SPACEs or TABs at end of line. | 37415 | all SPACEs or TABs at end of line. |
| 37368 | 37416 | ||
| 37369 | 4. 8 or more SPACEs after TAB. | 37417 | 4. `tab-width' or more SPACEs after TAB. |
| 37370 | If `whitespace-style' includes the value `space-after-tab': | 37418 | If `whitespace-style' includes the value `space-after-tab': |
| 37371 | replace SPACEs by TABs, if `indent-tabs-mode' is non-nil; | 37419 | replace SPACEs by TABs, if `indent-tabs-mode' is non-nil; |
| 37372 | otherwise, replace TABs by SPACEs. | 37420 | otherwise, replace TABs by SPACEs. |
| @@ -37395,13 +37443,8 @@ non-nil. | |||
| 37395 | 37443 | ||
| 37396 | If FORCE is non-nil or \\[universal-argument] was pressed just | 37444 | If FORCE is non-nil or \\[universal-argument] was pressed just |
| 37397 | before calling `whitespace-report-region' interactively, it | 37445 | before calling `whitespace-report-region' interactively, it |
| 37398 | forces `whitespace-style' to have: | 37446 | forces all classes of whitespace problem to be considered |
| 37399 | 37447 | significant. | |
| 37400 | empty | ||
| 37401 | trailing | ||
| 37402 | indentation | ||
| 37403 | space-before-tab | ||
| 37404 | space-after-tab | ||
| 37405 | 37448 | ||
| 37406 | If REPORT-IF-BOGUS is t, it reports only when there are any | 37449 | If REPORT-IF-BOGUS is t, it reports only when there are any |
| 37407 | whitespace problems in buffer; if it is `never', it does not | 37450 | whitespace problems in buffer; if it is `never', it does not |
| @@ -37413,9 +37456,9 @@ Report if some of the following whitespace problems exist: | |||
| 37413 | empty 1. empty lines at beginning of buffer. | 37456 | empty 1. empty lines at beginning of buffer. |
| 37414 | empty 2. empty lines at end of buffer. | 37457 | empty 2. empty lines at end of buffer. |
| 37415 | trailing 3. SPACEs or TABs at end of line. | 37458 | trailing 3. SPACEs or TABs at end of line. |
| 37416 | indentation 4. 8 or more SPACEs at beginning of line. | 37459 | indentation 4. line starts with `tab-width' or more SPACEs. |
| 37417 | space-before-tab 5. SPACEs before TAB. | 37460 | space-before-tab 5. SPACEs before TAB. |
| 37418 | space-after-tab 6. 8 or more SPACEs after TAB. | 37461 | space-after-tab 6. `tab-width' or more SPACEs after TAB. |
| 37419 | 37462 | ||
| 37420 | * If `indent-tabs-mode' is nil: | 37463 | * If `indent-tabs-mode' is nil: |
| 37421 | empty 1. empty lines at beginning of buffer. | 37464 | empty 1. empty lines at beginning of buffer. |
| @@ -37423,7 +37466,7 @@ Report if some of the following whitespace problems exist: | |||
| 37423 | trailing 3. SPACEs or TABs at end of line. | 37466 | trailing 3. SPACEs or TABs at end of line. |
| 37424 | indentation 4. TABS at beginning of line. | 37467 | indentation 4. TABS at beginning of line. |
| 37425 | space-before-tab 5. SPACEs before TAB. | 37468 | space-before-tab 5. SPACEs before TAB. |
| 37426 | space-after-tab 6. 8 or more SPACEs after TAB. | 37469 | space-after-tab 6. `tab-width' or more SPACEs after TAB. |
| 37427 | 37470 | ||
| 37428 | See `whitespace-style' for documentation. | 37471 | See `whitespace-style' for documentation. |
| 37429 | See also `whitespace-cleanup' and `whitespace-cleanup-region' for | 37472 | See also `whitespace-cleanup' and `whitespace-cleanup-region' for |