aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2016-12-01 06:20:43 -0500
committerGlenn Morris2016-12-01 06:20:43 -0500
commit7d35b3d33da641b462d22df005266225e799d27f (patch)
tree6737fb52324dd4dca2164fe2b10e18700ada7c9c
parent04355cb50485f109aabb8e9a815412fbb0d1e750 (diff)
downloademacs-7d35b3d33da641b462d22df005266225e799d27f.tar.gz
emacs-7d35b3d33da641b462d22df005266225e799d27f.zip
; Auto-commit of loaddefs files.
-rw-r--r--lisp/ldefs-boot.el125
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" "\
4728List history of commands typed to minibuffer. 4728List history of commands that used the minibuffer.
4729The number of commands listed is controlled by `list-command-history-max'. 4729The number of commands listed is controlled by `list-command-history-max'.
4730Calls value of `list-command-history-filter' (if non-nil) on each history 4730Calls value of `list-command-history-filter' (if non-nil) on each history
4731element to judge if that element should be excluded from the list. 4731element 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.
6383If no suitable preceding word is found, words following point are 6383If no suitable preceding word is found, words following point are
6384considered. If still no suitable word is found, then look in the 6384considered. If still no suitable word is found, then look in the
6385buffers accepted by the function pointed out by variable 6385buffers accepted by the function pointed out by variable
6386`dabbrev-friend-buffer-function'. 6386`dabbrev-friend-buffer-function', if `dabbrev-check-other-buffers'
6387says so. Then, if `dabbrev-check-all-buffers' is non-nil, look in
6388all the other buffers, subject to constraints specified
6389by `dabbrev-ignored-buffer-names' and `dabbrev-ignored-regexps'.
6387 6390
6388A positive prefix argument, N, says to take the Nth backward *distinct* 6391A positive prefix argument, N, says to take the Nth backward *distinct*
6389possibility. A negative argument says search forward. 6392possibility. 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 "\
12364Non-nil means enable use of connection-local variables.")
12365
12366(autoload 'connection-local-set-classes "files-x" "\
12367Add CLASSES for remote servers.
12368CRITERIA is either a regular expression identifying a remote
12369server, or a function with one argument IDENTIFICATION, which
12370returns non-nil when a remote server shall apply CLASS'es
12371variables. If CRITERIA is nil, it always applies.
12372CLASSES are the names of a variable class (a symbol).
12373
12374When a connection to a remote server is opened and CRITERIA
12375matches to that server, the connection-local variables from CLASSES
12376are applied to the corresponding process buffer. The variables
12377for 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" "\
12382Map the symbol CLASS to a list of variable settings.
12383VARIABLES is a list that declares connection-local variables for
12384the class. An element in VARIABLES is an alist whose elements
12385are of the form (VAR . VALUE).
12386
12387When a connection to a remote server is opened, the server's
12388classes are found. A server may be assigned a class using
12389`connection-local-set-class'. Then variables are set in the
12390server's process buffer according to the VARIABLES list of the
12391class. The list is processed in order.
12392
12393\(fn CLASS VARIABLES)" nil nil)
12394
12395(autoload 'hack-connection-local-variables-apply "files-x" "\
12396Apply connection-local variables identified by `default-directory'.
12397Other local variables, like file-local and dir-local variables,
12398will not be changed.
12399
12400\(fn)" nil nil)
12401
12402(autoload 'with-connection-local-classes "files-x" "\
12403Apply connection-local variables according to CLASSES in current buffer.
12404Execute 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" "\
24341Like `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" "\
27689Return ROT13 encryption of OBJECT, a buffer or string. 27740ROT13 encrypt OBJECT, a buffer or string.
27741If OBJECT is a buffer, encrypt the region between START and END.
27742If OBJECT is a string, encrypt it in its entirety, ignoring START
27743and 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" "\
33179Return the number of days between year 1 and DATE. 33233Return the number of days between year 1 and DATE.
@@ -33735,21 +33789,11 @@ On W32 systems, the volume letter must be ignored.")
33735Value for `tramp-file-name-regexp' for separate remoting. 33789Value for `tramp-file-name-regexp' for separate remoting.
33736See `tramp-file-name-structure' for more explanations.") 33790See `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"))) "\
33739Regular expression matching file names handled by Tramp. 33793Regular expression matching file names handled by Tramp.
33740This regexp should match Tramp file names but no other file names. 33794This regexp should match Tramp file names but no other file
33741When tramp.el is loaded, this regular expression is prepended to 33795names. When calling `tramp-register-file-name-handlers', the
33742`file-name-handler-alist', and that is searched sequentially. Thus, 33796initial value is overwritten by the car of `tramp-file-name-structure'.")
33743if the Tramp entry appears rather early in the `file-name-handler-alist'
33744and is a bit too general, then some files might be considered Tramp
33745files which are not really Tramp files.
33746
33747Please note that the entry in `file-name-handler-alist' is made when
33748this file (tramp.el) is loaded. This means that this variable must be set
33749before loading tramp.el. Alternatively, `file-name-handler-alist' can be
33750updated after changing this variable.
33751
33752Also 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,\\}\\'" "\\`/[^/]*\\'") "\
33755Value for `tramp-completion-file-name-regexp' for unified remoting. 33799Value for `tramp-completion-file-name-regexp' for unified remoting.
@@ -35180,6 +35224,10 @@ backend of FILE. If FILE is not registered, then the
35180first backend in `vc-handled-backends' that declares itself 35224first backend in `vc-handled-backends' that declares itself
35181responsible for FILE is returned. 35225responsible for FILE is returned.
35182 35226
35227Note that if FILE is a symbolic link, it will not be resolved --
35228the responsible backend system for the symbolic link itself will
35229be 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
373043. 8 or more SPACEs at beginning of line. 373523. `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
373276. 8 or more SPACEs after TAB. 373756. `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
37344The problems cleaned up are: 37392The problems cleaned up are:
37345 37393
373461. 8 or more SPACEs at beginning of line. 373941. `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
373694. 8 or more SPACEs after TAB. 374174. `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
37396If FORCE is non-nil or \\[universal-argument] was pressed just 37444If FORCE is non-nil or \\[universal-argument] was pressed just
37397before calling `whitespace-report-region' interactively, it 37445before calling `whitespace-report-region' interactively, it
37398forces `whitespace-style' to have: 37446forces all classes of whitespace problem to be considered
37399 37447significant.
37400 empty
37401 trailing
37402 indentation
37403 space-before-tab
37404 space-after-tab
37405 37448
37406If REPORT-IF-BOGUS is t, it reports only when there are any 37449If REPORT-IF-BOGUS is t, it reports only when there are any
37407whitespace problems in buffer; if it is `never', it does not 37450whitespace 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
37428See `whitespace-style' for documentation. 37471See `whitespace-style' for documentation.
37429See also `whitespace-cleanup' and `whitespace-cleanup-region' for 37472See also `whitespace-cleanup' and `whitespace-cleanup-region' for