aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2017-11-01 06:33:24 -0400
committerGlenn Morris2017-11-01 06:33:24 -0400
commitebdcfc294d1a57c67d6216854f7eac4553c8bd95 (patch)
treee3f08cb10780b56d39e25d6ee2d5060bcc2c0378
parent460fe4a1bc40f2ba39deda6448a7baf57e0e6b76 (diff)
downloademacs-ebdcfc294d1a57c67d6216854f7eac4553c8bd95.tar.gz
emacs-ebdcfc294d1a57c67d6216854f7eac4553c8bd95.zip
; Auto-commit of loaddefs files.
-rw-r--r--lisp/ldefs-boot.el59
1 files changed, 21 insertions, 38 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index 8a856c4ee0b..78e1065aae1 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -13092,6 +13092,15 @@ description of the problem detected in this region.
13092 13092
13093\(fn BUFFER BEG END TYPE TEXT)" nil nil) 13093\(fn BUFFER BEG END TYPE TEXT)" nil nil)
13094 13094
13095(autoload 'flymake-diagnostics "flymake" "\
13096Get Flymake diagnostics in region determined by BEG and END.
13097
13098If neither BEG or END is supplied, use the whole buffer,
13099otherwise if BEG is non-nil and END is nil, consider only
13100diagnostics at BEG.
13101
13102\(fn &optional BEG END)" nil nil)
13103
13095(autoload 'flymake-diag-region "flymake" "\ 13104(autoload 'flymake-diag-region "flymake" "\
13096Compute BUFFER's region (BEG . END) corresponding to LINE and COL. 13105Compute BUFFER's region (BEG . END) corresponding to LINE and COL.
13097If COL is nil, return a region just for LINE. Return nil if the 13106If COL is nil, return a region just for LINE. Return nil if the
@@ -27215,6 +27224,10 @@ With a prefix (or a FILL) argument, also fill too short lines.
27215Replace rectangle contents with STRING on each line. 27224Replace rectangle contents with STRING on each line.
27216The length of STRING need not be the same as the rectangle width. 27225The length of STRING need not be the same as the rectangle width.
27217 27226
27227When called interactively and option `rectangle-preview' is
27228non-nil, display the result as the user enters the string into
27229the minibuffer.
27230
27218Called from a program, takes three args; START, END and STRING. 27231Called from a program, takes three args; START, END and STRING.
27219 27232
27220\(fn START END STRING)" t nil) 27233\(fn START END STRING)" t nil)
@@ -30975,7 +30988,7 @@ the sort order.
30975\(fn FIELD BEG END)" t nil) 30988\(fn FIELD BEG END)" t nil)
30976 30989
30977(autoload 'sort-regexp-fields "sort" "\ 30990(autoload 'sort-regexp-fields "sort" "\
30978Sort the text in the region region lexicographically. 30991Sort the text in the region lexicographically.
30979If called interactively, prompt for two regular expressions, 30992If called interactively, prompt for two regular expressions,
30980RECORD-REGEXP and KEY-REGEXP. 30993RECORD-REGEXP and KEY-REGEXP.
30981 30994
@@ -34384,20 +34397,6 @@ If it is set to nil, all remote file names are used literally.")
34384 34397
34385(custom-autoload 'tramp-mode "tramp" t) 34398(custom-autoload 'tramp-mode "tramp" t)
34386 34399
34387(defvar tramp-syntax 'default "\
34388Tramp filename syntax to be used.
34389
34390It can have the following values:
34391
34392 `default' -- Default syntax
34393 `simplified' -- Ange-FTP like syntax
34394 `separate' -- Syntax as defined for XEmacs originally
34395
34396Do not change the value by `setq', it must be changed only by
34397`custom-set-variables'. See also `tramp-change-syntax'.")
34398
34399(custom-autoload 'tramp-syntax "tramp" nil)
34400
34401(defconst tramp-initial-file-name-regexp "\\`/.+:.*:" "\ 34400(defconst tramp-initial-file-name-regexp "\\`/.+:.*:" "\
34402Value for `tramp-file-name-regexp' for autoload. 34401Value for `tramp-file-name-regexp' for autoload.
34403It must match the initial `tramp-syntax' settings.") 34402It must match the initial `tramp-syntax' settings.")
@@ -34408,33 +34407,17 @@ This regexp should match Tramp file names but no other file
34408names. When calling `tramp-register-file-name-handlers', the 34407names. When calling `tramp-register-file-name-handlers', the
34409initial value is overwritten by the car of `tramp-file-name-structure'.") 34408initial value is overwritten by the car of `tramp-file-name-structure'.")
34410 34409
34411(defconst tramp-completion-file-name-regexp-default (concat "\\`/\\(" "\\([^/|:]+:[^/|:]*|\\)*" (if (memq system-type '(cygwin windows-nt)) "\\(-\\|[^/|:]\\{2,\\}\\)" "[^/|:]+") "\\(:[^/|:]*\\)?" "\\)?\\'") "\ 34410(defconst tramp-autoload-file-name-regexp (concat "\\`/" (if (memq system-type '(cygwin windows-nt)) "\\(-\\|[^/|:]\\{2,\\}\\)" "[^/|:]+") ":\\'") "\
34412Value for `tramp-completion-file-name-regexp' for default remoting. 34411Regular expression matching file names handled by Tramp autoload.
34413See `tramp-file-name-structure' for more explanations. 34412It must match the initial `tramp-syntax' settings. It should not
34414 34413match file names at root of the underlying local file system,
34415On W32 systems, the volume letter must be ignored.") 34414like \"/sys\" or \"/C:\".")
34416
34417(defconst tramp-initial-completion-file-name-regexp tramp-completion-file-name-regexp-default "\
34418Value for `tramp-completion-file-name-regexp' for autoload.
34419It must match the initial `tramp-syntax' settings.")
34420
34421(defconst tramp-completion-file-name-handler-alist '((file-name-all-completions . tramp-completion-handle-file-name-all-completions) (file-name-completion . tramp-completion-handle-file-name-completion)) "\
34422Alist of completion handler functions.
34423Used for file names matching `tramp-completion-file-name-regexp'.
34424Operations not mentioned here will be handled by Tramp's file
34425name handler functions, or the normal Emacs functions.")
34426
34427(autoload 'tramp-completion-file-name-handler "tramp" "\
34428Invoke Tramp file name completion handler.
34429Falls back to normal file name handler if no Tramp file name handler exists.
34430
34431\(fn OPERATION &rest ARGS)" nil nil)
34432 34415
34433(defun tramp-autoload-file-name-handler (operation &rest args) "\ 34416(defun tramp-autoload-file-name-handler (operation &rest args) "\
34434Load Tramp file name handler, and perform OPERATION." (let ((default-directory temporary-file-directory)) (load "tramp" (quote noerror) (quote nomessage))) (apply operation args)) 34417Load Tramp file name handler, and perform OPERATION." (let ((default-directory temporary-file-directory)) (load "tramp" (quote noerror) (quote nomessage))) (apply operation args))
34435 34418
34436(defun tramp-register-autoload-file-name-handlers nil "\ 34419(defun tramp-register-autoload-file-name-handlers nil "\
34437Add Tramp file name handlers to `file-name-handler-alist' during autoload." (add-to-list (quote file-name-handler-alist) (cons tramp-initial-file-name-regexp (quote tramp-autoload-file-name-handler))) (put (quote tramp-autoload-file-name-handler) (quote safe-magic) t) (add-to-list (quote file-name-handler-alist) (cons tramp-initial-completion-file-name-regexp (quote tramp-completion-file-name-handler))) (put (quote tramp-completion-file-name-handler) (quote safe-magic) t) (put (quote tramp-completion-file-name-handler) (quote operations) (mapcar (quote car) tramp-completion-file-name-handler-alist))) 34420Add Tramp file name handlers to `file-name-handler-alist' during autoload." (add-to-list (quote file-name-handler-alist) (cons tramp-autoload-file-name-regexp (quote tramp-autoload-file-name-handler))) (put (quote tramp-autoload-file-name-handler) (quote safe-magic) t))
34438 34421
34439(tramp-register-autoload-file-name-handlers) 34422(tramp-register-autoload-file-name-handlers)
34440 34423
@@ -35995,7 +35978,7 @@ When called interactively with a prefix argument, prompt for LIMIT.
35995\(fn &optional LIMIT)" t nil) 35978\(fn &optional LIMIT)" t nil)
35996 35979
35997(autoload 'vc-print-branch-log "vc" "\ 35980(autoload 'vc-print-branch-log "vc" "\
35998 35981Show the change log for BRANCH in a window.
35999 35982
36000\(fn BRANCH)" t nil) 35983\(fn BRANCH)" t nil)
36001 35984