aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2018-12-01 07:23:22 -0500
committerGlenn Morris2018-12-01 07:23:22 -0500
commita8d178816a8926616736f25f0cc2e7aad38ceaf7 (patch)
tree6240e00af65847717d6cfeeeba471ec0d834d857
parent7d9fa89fb3f6db0bdc3960bbbf6c0cf34c98d1ca (diff)
downloademacs-a8d178816a8926616736f25f0cc2e7aad38ceaf7.tar.gz
emacs-a8d178816a8926616736f25f0cc2e7aad38ceaf7.zip
; Auto-commit of loaddefs files.
-rw-r--r--lisp/ldefs-boot.el185
1 files changed, 150 insertions, 35 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index a8b206fe3a5..f90815dc9bc 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -2289,7 +2289,7 @@ a reflection.
2289 (define-key ctl-x-r-map "M" 'bookmark-set-no-overwrite) 2289 (define-key ctl-x-r-map "M" 'bookmark-set-no-overwrite)
2290 (define-key ctl-x-r-map "l" 'bookmark-bmenu-list) 2290 (define-key ctl-x-r-map "l" 'bookmark-bmenu-list)
2291 2291
2292(defvar bookmark-map (let ((map (make-sparse-keymap))) (define-key map "x" 'bookmark-set) (define-key map "m" 'bookmark-set) (define-key map "M" 'bookmark-set-no-overwrite) (define-key map "j" 'bookmark-jump) (define-key map "g" 'bookmark-jump) (define-key map "o" 'bookmark-jump-other-window) (define-key map "i" 'bookmark-insert) (define-key map "e" 'edit-bookmarks) (define-key map "f" 'bookmark-insert-location) (define-key map "r" 'bookmark-rename) (define-key map "d" 'bookmark-delete) (define-key map "l" 'bookmark-load) (define-key map "w" 'bookmark-write) (define-key map "s" 'bookmark-save) map) "\ 2292(defvar bookmark-map (let ((map (make-sparse-keymap))) (define-key map "x" 'bookmark-set) (define-key map "m" 'bookmark-set) (define-key map "M" 'bookmark-set-no-overwrite) (define-key map "j" 'bookmark-jump) (define-key map "g" 'bookmark-jump) (define-key map "o" 'bookmark-jump-other-window) (define-key map "5" 'bookmark-jump-other-frame) (define-key map "i" 'bookmark-insert) (define-key map "e" 'edit-bookmarks) (define-key map "f" 'bookmark-insert-location) (define-key map "r" 'bookmark-rename) (define-key map "d" 'bookmark-delete) (define-key map "l" 'bookmark-load) (define-key map "w" 'bookmark-write) (define-key map "s" 'bookmark-save) map) "\
2293Keymap containing bindings to bookmark functions. 2293Keymap containing bindings to bookmark functions.
2294It is not bound to any key by default: to bind it 2294It is not bound to any key by default: to bind it
2295so that you have a bookmark prefix, just use `global-set-key' and bind a 2295so that you have a bookmark prefix, just use `global-set-key' and bind a
@@ -2380,6 +2380,11 @@ Jump to BOOKMARK in another window. See `bookmark-jump' for more.
2380 2380
2381\(fn BOOKMARK)" t nil) 2381\(fn BOOKMARK)" t nil)
2382 2382
2383(autoload 'bookmark-jump-other-frame "bookmark" "\
2384Jump to BOOKMARK in another frame. See `bookmark-jump' for more.
2385
2386\(fn BOOKMARK)" t nil)
2387
2383(autoload 'bookmark-relocate "bookmark" "\ 2388(autoload 'bookmark-relocate "bookmark" "\
2384Relocate BOOKMARK-NAME to another file, reading file name with minibuffer. 2389Relocate BOOKMARK-NAME to another file, reading file name with minibuffer.
2385 2390
@@ -3086,7 +3091,7 @@ and corresponding effects.
3086 3091
3087\(fn &optional ARG)" nil nil) 3092\(fn &optional ARG)" nil nil)
3088 3093
3089(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "bytecomp" '("batch-byte-compile-file" "byte-" "displaying-byte-compile-warnings" "emacs-lisp-file-regexp" "no-byte-compile"))) 3094(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "bytecomp" '("batch-byte-compile-file" "byte-" "displaying-byte-compile-warnings" "emacs-lisp-" "no-byte-compile")))
3090 3095
3091;;;*** 3096;;;***
3092 3097
@@ -4627,9 +4632,8 @@ a separate buffer.
4627 4632
4628(autoload 'checkdoc-continue "checkdoc" "\ 4633(autoload 'checkdoc-continue "checkdoc" "\
4629Find the next doc string in the current buffer which has a style error. 4634Find the next doc string in the current buffer which has a style error.
4630Prefix argument TAKE-NOTES means to continue through the whole buffer and 4635Prefix argument TAKE-NOTES means to continue through the whole
4631save warnings in a separate buffer. Second optional argument START-POINT 4636buffer and save warnings in a separate buffer.
4632is the starting location. If this is nil, `point-min' is used instead.
4633 4637
4634\(fn &optional TAKE-NOTES)" t nil) 4638\(fn &optional TAKE-NOTES)" t nil)
4635 4639
@@ -7064,13 +7068,22 @@ The position information includes POS; the total size of BUFFER; the
7064region limits, if narrowed; the column number; and the horizontal 7068region limits, if narrowed; the column number; and the horizontal
7065scroll amount, if the buffer is horizontally scrolled. 7069scroll amount, if the buffer is horizontally scrolled.
7066 7070
7067The character information includes the character code; charset and 7071The character information includes:
7068code points in it; syntax; category; how the character is encoded in 7072 its codepoint;
7069BUFFER and in BUFFER's file; character composition information (if 7073 its charset (see `char-charset'), overridden by the `charset' text
7070relevant); the font and font glyphs used to display the character; 7074 property at POS, if any;
7071the character's canonical name and other properties defined by the 7075 the codepoint of the character in the above charset;
7072Unicode Data Base; and widgets, buttons, overlays, and text properties 7076 the character's script (as defined by `char-script-table')
7073relevant to POS. 7077 the character's syntax, as produced by `syntax-after'
7078 and `internal-describe-syntax-value';
7079 its category (see `char-category-set' and `describe-char-categories');
7080 how to input the character using the keyboard and input methods;
7081 how the character is encoded in BUFFER and in BUFFER's file;
7082 the font and font glyphs used to display the character;
7083 the composition information for displaying the character (if relevant);
7084 the character's canonical name and other properties defined by the
7085 Unicode Data Base;
7086 and widgets, buttons, overlays, and text properties relevant to POS.
7074 7087
7075\(fn POS &optional BUFFER)" t nil) 7088\(fn POS &optional BUFFER)" t nil)
7076 7089
@@ -9393,6 +9406,7 @@ MERGE-AUTOSTORE-DIR is the directory in which to store merged files.
9393 9406
9394(autoload 'ediff-windows-wordwise "ediff" "\ 9407(autoload 'ediff-windows-wordwise "ediff" "\
9395Compare WIND-A and WIND-B, which are selected by clicking, wordwise. 9408Compare WIND-A and WIND-B, which are selected by clicking, wordwise.
9409This compares the portions of text visible in each of the two windows.
9396With prefix argument, DUMB-MODE, or on a non-windowing display, works as 9410With prefix argument, DUMB-MODE, or on a non-windowing display, works as
9397follows: 9411follows:
9398If WIND-A is nil, use selected window. 9412If WIND-A is nil, use selected window.
@@ -9404,6 +9418,7 @@ arguments after setting up the Ediff buffers.
9404 9418
9405(autoload 'ediff-windows-linewise "ediff" "\ 9419(autoload 'ediff-windows-linewise "ediff" "\
9406Compare WIND-A and WIND-B, which are selected by clicking, linewise. 9420Compare WIND-A and WIND-B, which are selected by clicking, linewise.
9421This compares the portions of text visible in each of the two windows.
9407With prefix argument, DUMB-MODE, or on a non-windowing display, works as 9422With prefix argument, DUMB-MODE, or on a non-windowing display, works as
9408follows: 9423follows:
9409If WIND-A is nil, use selected window. 9424If WIND-A is nil, use selected window.
@@ -9417,8 +9432,8 @@ arguments after setting up the Ediff buffers.
9417Run Ediff on a pair of regions in specified buffers. 9432Run Ediff on a pair of regions in specified buffers.
9418BUFFER-A and BUFFER-B are the buffers to be compared. 9433BUFFER-A and BUFFER-B are the buffers to be compared.
9419Regions (i.e., point and mark) can be set in advance or marked interactively. 9434Regions (i.e., point and mark) can be set in advance or marked interactively.
9420This function is effective only for relatively small regions, up to 200 9435This function might be slow for large regions. If you find it slow,
9421lines. For large regions, use `ediff-regions-linewise'. 9436use `ediff-regions-linewise' instead.
9422STARTUP-HOOKS is a list of functions that Emacs calls without 9437STARTUP-HOOKS is a list of functions that Emacs calls without
9423arguments after setting up the Ediff buffers. 9438arguments after setting up the Ediff buffers.
9424 9439
@@ -25052,34 +25067,45 @@ variable name being but a special case of it).
25052(function-put 'pcase-lambda 'lisp-indent-function 'defun) 25067(function-put 'pcase-lambda 'lisp-indent-function 'defun)
25053 25068
25054(autoload 'pcase-let* "pcase" "\ 25069(autoload 'pcase-let* "pcase" "\
25055Like `let*' but where you can use `pcase' patterns for bindings. 25070Like `let*', but supports destructuring BINDINGS using `pcase' patterns.
25056BODY should be an expression, and BINDINGS should be a list of bindings 25071As with `pcase-let', BINDINGS are of the form (PATTERN EXP), but the
25057of the form (PATTERN EXP). 25072EXP in each binding in BINDINGS can use the results of the destructuring
25058See `pcase-let' for discussion of how PATTERN is matched. 25073bindings that precede it in BINDINGS' order.
25074
25075Each EXP should match (i.e. be of compatible structure) to its
25076respective PATTERN; a mismatch may signal an error or may go
25077undetected, binding variables to arbitrary values, such as nil.
25059 25078
25060\(fn BINDINGS &rest BODY)" nil t) 25079\(fn BINDINGS &rest BODY)" nil t)
25061 25080
25062(function-put 'pcase-let* 'lisp-indent-function '1) 25081(function-put 'pcase-let* 'lisp-indent-function '1)
25063 25082
25064(autoload 'pcase-let "pcase" "\ 25083(autoload 'pcase-let "pcase" "\
25065Like `let' but where you can use `pcase' patterns for bindings. 25084Like `let', but supports destructuring BINDINGS using `pcase' patterns.
25066BODY should be a list of expressions, and BINDINGS should be a list of bindings 25085BODY should be a list of expressions, and BINDINGS should be a list of
25067of the form (PATTERN EXP). 25086bindings of the form (PATTERN EXP).
25068The PATTERNs are only used to extract data, so the code does not test 25087All EXPs are evaluated first, and then used to perform destructuring
25069whether the data does match the corresponding patterns: a mismatch 25088bindings by matching each EXP against its respective PATTERN. Then
25070may signal an error or may go undetected, binding variables to arbitrary 25089BODY is evaluated with those bindings in effect.
25071values, such as nil. 25090
25091Each EXP should match (i.e. be of compatible structure) to its
25092respective PATTERN; a mismatch may signal an error or may go
25093undetected, binding variables to arbitrary values, such as nil.
25072 25094
25073\(fn BINDINGS &rest BODY)" nil t) 25095\(fn BINDINGS &rest BODY)" nil t)
25074 25096
25075(function-put 'pcase-let 'lisp-indent-function '1) 25097(function-put 'pcase-let 'lisp-indent-function '1)
25076 25098
25077(autoload 'pcase-dolist "pcase" "\ 25099(autoload 'pcase-dolist "pcase" "\
25078Superset of `dolist' where the VAR binding can be a `pcase' PATTERN. 25100Eval BODY once for each set of bindings defined by PATTERN and LIST elements.
25079More specifically, this is just a shorthand for the following combination 25101PATTERN should be a `pcase' pattern describing the structure of
25080of `dolist' and `pcase-let': 25102LIST elements, and LIST is a list of objects that match PATTERN,
25081 25103i.e. have a structure that is compatible with PATTERN.
25082 (dolist (x LIST) (pcase-let ((PATTERN x)) BODY...)) 25104For each element of LIST, this macro binds the variables in
25105PATTERN to the corresponding subfields of the LIST element, and
25106then evaluates BODY with these bindings in effect. The
25107destructuring bindings of variables in PATTERN to the subfields
25108of the elements of LIST is performed as if by `pcase-let'.
25083 25109
25084\(fn (PATTERN LIST) BODY...)" nil t) 25110\(fn (PATTERN LIST) BODY...)" nil t)
25085 25111
@@ -34501,8 +34527,10 @@ MENU is like the MENU argument to `x-popup-menu': either a
34501keymap or an alist of alists. 34527keymap or an alist of alists.
34502DEFAULT-ITEM, if non-nil, specifies an initial default choice. 34528DEFAULT-ITEM, if non-nil, specifies an initial default choice.
34503Its value should be an event that has a binding in MENU. 34529Its value should be an event that has a binding in MENU.
34530NO-EXECUTE, if non-nil, means to return the command the user selects
34531instead of executing it.
34504 34532
34505\(fn MENU &optional IN-POPUP DEFAULT-ITEM)" nil nil) 34533\(fn MENU &optional IN-POPUP DEFAULT-ITEM NO-EXECUTE)" nil nil)
34506 34534
34507(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tmm" '("tmm-"))) 34535(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tmm" '("tmm-")))
34508 34536
@@ -34849,6 +34877,14 @@ Reenable Ange-FTP, when Tramp is unloaded.
34849 34877
34850;;;*** 34878;;;***
34851 34879
34880;;;### (autoloads nil "tramp-rclone" "net/tramp-rclone.el" (0 0 0
34881;;;;;; 0))
34882;;; Generated autoloads from net/tramp-rclone.el
34883
34884(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tramp-rclone" '("tramp-rclone-")))
34885
34886;;;***
34887
34852;;;### (autoloads nil "tramp-sh" "net/tramp-sh.el" (0 0 0 0)) 34888;;;### (autoloads nil "tramp-sh" "net/tramp-sh.el" (0 0 0 0))
34853;;; Generated autoloads from net/tramp-sh.el 34889;;; Generated autoloads from net/tramp-sh.el
34854 34890
@@ -38529,7 +38565,8 @@ With no prefix argument, or with prefix argument equal to zero,
38529\"left\" is relative to the position of point in the window; otherwise 38565\"left\" is relative to the position of point in the window; otherwise
38530it is relative to the top edge (for positive ARG) or the bottom edge 38566it is relative to the top edge (for positive ARG) or the bottom edge
38531\(for negative ARG) of the current window. 38567\(for negative ARG) of the current window.
38532If no window is at the desired location, an error is signaled. 38568If no window is at the desired location, an error is signaled
38569unless `windmove-create-window' is non-nil and a new window is created.
38533 38570
38534\(fn &optional ARG)" t nil) 38571\(fn &optional ARG)" t nil)
38535 38572
@@ -38539,7 +38576,8 @@ With no prefix argument, or with prefix argument equal to zero, \"up\"
38539is relative to the position of point in the window; otherwise it is 38576is relative to the position of point in the window; otherwise it is
38540relative to the left edge (for positive ARG) or the right edge (for 38577relative to the left edge (for positive ARG) or the right edge (for
38541negative ARG) of the current window. 38578negative ARG) of the current window.
38542If no window is at the desired location, an error is signaled. 38579If no window is at the desired location, an error is signaled
38580unless `windmove-create-window' is non-nil and a new window is created.
38543 38581
38544\(fn &optional ARG)" t nil) 38582\(fn &optional ARG)" t nil)
38545 38583
@@ -38549,7 +38587,8 @@ With no prefix argument, or with prefix argument equal to zero,
38549\"right\" is relative to the position of point in the window; 38587\"right\" is relative to the position of point in the window;
38550otherwise it is relative to the top edge (for positive ARG) or the 38588otherwise it is relative to the top edge (for positive ARG) or the
38551bottom edge (for negative ARG) of the current window. 38589bottom edge (for negative ARG) of the current window.
38552If no window is at the desired location, an error is signaled. 38590If no window is at the desired location, an error is signaled
38591unless `windmove-create-window' is non-nil and a new window is created.
38553 38592
38554\(fn &optional ARG)" t nil) 38593\(fn &optional ARG)" t nil)
38555 38594
@@ -38559,7 +38598,8 @@ With no prefix argument, or with prefix argument equal to zero,
38559\"down\" is relative to the position of point in the window; otherwise 38598\"down\" is relative to the position of point in the window; otherwise
38560it is relative to the left edge (for positive ARG) or the right edge 38599it is relative to the left edge (for positive ARG) or the right edge
38561\(for negative ARG) of the current window. 38600\(for negative ARG) of the current window.
38562If no window is at the desired location, an error is signaled. 38601If no window is at the desired location, an error is signaled
38602unless `windmove-create-window' is non-nil and a new window is created.
38563 38603
38564\(fn &optional ARG)" t nil) 38604\(fn &optional ARG)" t nil)
38565 38605
@@ -38571,6 +38611,81 @@ Default value of MODIFIERS is `shift'.
38571 38611
38572\(fn &optional MODIFIERS)" t nil) 38612\(fn &optional MODIFIERS)" t nil)
38573 38613
38614(autoload 'windmove-display-left "windmove" "\
38615Display the next buffer in window to the left of the current one.
38616See the logic of the prefix ARG in `windmove-display-in-direction'.
38617
38618\(fn &optional ARG)" t nil)
38619
38620(autoload 'windmove-display-up "windmove" "\
38621Display the next buffer in window above the current one.
38622See the logic of the prefix ARG in `windmove-display-in-direction'.
38623
38624\(fn &optional ARG)" t nil)
38625
38626(autoload 'windmove-display-right "windmove" "\
38627Display the next buffer in window to the right of the current one.
38628See the logic of the prefix ARG in `windmove-display-in-direction'.
38629
38630\(fn &optional ARG)" t nil)
38631
38632(autoload 'windmove-display-down "windmove" "\
38633Display the next buffer in window below the current one.
38634See the logic of the prefix ARG in `windmove-display-in-direction'.
38635
38636\(fn &optional ARG)" t nil)
38637
38638(autoload 'windmove-display-same-window "windmove" "\
38639Display the next buffer in the same window.
38640
38641\(fn &optional ARG)" t nil)
38642
38643(autoload 'windmove-display-default-keybindings "windmove" "\
38644Set up keybindings for directional buffer display.
38645Keys are bound to commands that display the next buffer in the specified
38646direction. Keybindings are of the form MODIFIERS-{left,right,up,down},
38647where MODIFIERS is either a list of modifiers or a single modifier.
38648Default value of MODIFIERS is `shift-meta'.
38649
38650\(fn &optional MODIFIERS)" t nil)
38651
38652(autoload 'windmove-delete-left "windmove" "\
38653Delete the window to the left of the current one.
38654If prefix ARG is `C-u', delete the selected window and
38655select the window that was to the left of the current one.
38656
38657\(fn &optional ARG)" t nil)
38658
38659(autoload 'windmove-delete-up "windmove" "\
38660Delete the window above the current one.
38661If prefix ARG is `C-u', delete the selected window and
38662select the window that was above the current one.
38663
38664\(fn &optional ARG)" t nil)
38665
38666(autoload 'windmove-delete-right "windmove" "\
38667Delete the window to the right of the current one.
38668If prefix ARG is `C-u', delete the selected window and
38669select the window that was to the right of the current one.
38670
38671\(fn &optional ARG)" t nil)
38672
38673(autoload 'windmove-delete-down "windmove" "\
38674Delete the window below the current one.
38675If prefix ARG is `C-u', delete the selected window and
38676select the window that was below the current one.
38677
38678\(fn &optional ARG)" t nil)
38679
38680(autoload 'windmove-delete-default-keybindings "windmove" "\
38681Set up keybindings for directional window deletion.
38682Keys are bound to commands that delete windows in the specified
38683direction. Keybindings are of the form PREFIX MODIFIERS-{left,right,up,down},
38684where PREFIX is a prefix key and MODIFIERS is either a list of modifiers or
38685a single modifier. Default value of PREFIX is `C-x' and MODIFIERS is `shift'.
38686
38687\(fn &optional PREFIX MODIFIERS)" t nil)
38688
38574(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "windmove" '("windmove-"))) 38689(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "windmove" '("windmove-")))
38575 38690
38576;;;*** 38691;;;***