diff options
| author | Glenn Morris | 2018-12-01 07:23:22 -0500 |
|---|---|---|
| committer | Glenn Morris | 2018-12-01 07:23:22 -0500 |
| commit | a8d178816a8926616736f25f0cc2e7aad38ceaf7 (patch) | |
| tree | 6240e00af65847717d6cfeeeba471ec0d834d857 | |
| parent | 7d9fa89fb3f6db0bdc3960bbbf6c0cf34c98d1ca (diff) | |
| download | emacs-a8d178816a8926616736f25f0cc2e7aad38ceaf7.tar.gz emacs-a8d178816a8926616736f25f0cc2e7aad38ceaf7.zip | |
; Auto-commit of loaddefs files.
| -rw-r--r-- | lisp/ldefs-boot.el | 185 |
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) "\ |
| 2293 | Keymap containing bindings to bookmark functions. | 2293 | Keymap containing bindings to bookmark functions. |
| 2294 | It is not bound to any key by default: to bind it | 2294 | It is not bound to any key by default: to bind it |
| 2295 | so that you have a bookmark prefix, just use `global-set-key' and bind a | 2295 | so 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" "\ | ||
| 2384 | Jump 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" "\ |
| 2384 | Relocate BOOKMARK-NAME to another file, reading file name with minibuffer. | 2389 | Relocate 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" "\ |
| 4629 | Find the next doc string in the current buffer which has a style error. | 4634 | Find the next doc string in the current buffer which has a style error. |
| 4630 | Prefix argument TAKE-NOTES means to continue through the whole buffer and | 4635 | Prefix argument TAKE-NOTES means to continue through the whole |
| 4631 | save warnings in a separate buffer. Second optional argument START-POINT | 4636 | buffer and save warnings in a separate buffer. |
| 4632 | is 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 | |||
| 7064 | region limits, if narrowed; the column number; and the horizontal | 7068 | region limits, if narrowed; the column number; and the horizontal |
| 7065 | scroll amount, if the buffer is horizontally scrolled. | 7069 | scroll amount, if the buffer is horizontally scrolled. |
| 7066 | 7070 | ||
| 7067 | The character information includes the character code; charset and | 7071 | The character information includes: |
| 7068 | code points in it; syntax; category; how the character is encoded in | 7072 | its codepoint; |
| 7069 | BUFFER and in BUFFER's file; character composition information (if | 7073 | its charset (see `char-charset'), overridden by the `charset' text |
| 7070 | relevant); the font and font glyphs used to display the character; | 7074 | property at POS, if any; |
| 7071 | the character's canonical name and other properties defined by the | 7075 | the codepoint of the character in the above charset; |
| 7072 | Unicode Data Base; and widgets, buttons, overlays, and text properties | 7076 | the character's script (as defined by `char-script-table') |
| 7073 | relevant 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" "\ |
| 9395 | Compare WIND-A and WIND-B, which are selected by clicking, wordwise. | 9408 | Compare WIND-A and WIND-B, which are selected by clicking, wordwise. |
| 9409 | This compares the portions of text visible in each of the two windows. | ||
| 9396 | With prefix argument, DUMB-MODE, or on a non-windowing display, works as | 9410 | With prefix argument, DUMB-MODE, or on a non-windowing display, works as |
| 9397 | follows: | 9411 | follows: |
| 9398 | If WIND-A is nil, use selected window. | 9412 | If 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" "\ |
| 9406 | Compare WIND-A and WIND-B, which are selected by clicking, linewise. | 9420 | Compare WIND-A and WIND-B, which are selected by clicking, linewise. |
| 9421 | This compares the portions of text visible in each of the two windows. | ||
| 9407 | With prefix argument, DUMB-MODE, or on a non-windowing display, works as | 9422 | With prefix argument, DUMB-MODE, or on a non-windowing display, works as |
| 9408 | follows: | 9423 | follows: |
| 9409 | If WIND-A is nil, use selected window. | 9424 | If WIND-A is nil, use selected window. |
| @@ -9417,8 +9432,8 @@ arguments after setting up the Ediff buffers. | |||
| 9417 | Run Ediff on a pair of regions in specified buffers. | 9432 | Run Ediff on a pair of regions in specified buffers. |
| 9418 | BUFFER-A and BUFFER-B are the buffers to be compared. | 9433 | BUFFER-A and BUFFER-B are the buffers to be compared. |
| 9419 | Regions (i.e., point and mark) can be set in advance or marked interactively. | 9434 | Regions (i.e., point and mark) can be set in advance or marked interactively. |
| 9420 | This function is effective only for relatively small regions, up to 200 | 9435 | This function might be slow for large regions. If you find it slow, |
| 9421 | lines. For large regions, use `ediff-regions-linewise'. | 9436 | use `ediff-regions-linewise' instead. |
| 9422 | STARTUP-HOOKS is a list of functions that Emacs calls without | 9437 | STARTUP-HOOKS is a list of functions that Emacs calls without |
| 9423 | arguments after setting up the Ediff buffers. | 9438 | arguments 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" "\ |
| 25055 | Like `let*' but where you can use `pcase' patterns for bindings. | 25070 | Like `let*', but supports destructuring BINDINGS using `pcase' patterns. |
| 25056 | BODY should be an expression, and BINDINGS should be a list of bindings | 25071 | As with `pcase-let', BINDINGS are of the form (PATTERN EXP), but the |
| 25057 | of the form (PATTERN EXP). | 25072 | EXP in each binding in BINDINGS can use the results of the destructuring |
| 25058 | See `pcase-let' for discussion of how PATTERN is matched. | 25073 | bindings that precede it in BINDINGS' order. |
| 25074 | |||
| 25075 | Each EXP should match (i.e. be of compatible structure) to its | ||
| 25076 | respective PATTERN; a mismatch may signal an error or may go | ||
| 25077 | undetected, 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" "\ |
| 25065 | Like `let' but where you can use `pcase' patterns for bindings. | 25084 | Like `let', but supports destructuring BINDINGS using `pcase' patterns. |
| 25066 | BODY should be a list of expressions, and BINDINGS should be a list of bindings | 25085 | BODY should be a list of expressions, and BINDINGS should be a list of |
| 25067 | of the form (PATTERN EXP). | 25086 | bindings of the form (PATTERN EXP). |
| 25068 | The PATTERNs are only used to extract data, so the code does not test | 25087 | All EXPs are evaluated first, and then used to perform destructuring |
| 25069 | whether the data does match the corresponding patterns: a mismatch | 25088 | bindings by matching each EXP against its respective PATTERN. Then |
| 25070 | may signal an error or may go undetected, binding variables to arbitrary | 25089 | BODY is evaluated with those bindings in effect. |
| 25071 | values, such as nil. | 25090 | |
| 25091 | Each EXP should match (i.e. be of compatible structure) to its | ||
| 25092 | respective PATTERN; a mismatch may signal an error or may go | ||
| 25093 | undetected, 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" "\ |
| 25078 | Superset of `dolist' where the VAR binding can be a `pcase' PATTERN. | 25100 | Eval BODY once for each set of bindings defined by PATTERN and LIST elements. |
| 25079 | More specifically, this is just a shorthand for the following combination | 25101 | PATTERN should be a `pcase' pattern describing the structure of |
| 25080 | of `dolist' and `pcase-let': | 25102 | LIST elements, and LIST is a list of objects that match PATTERN, |
| 25081 | 25103 | i.e. have a structure that is compatible with PATTERN. | |
| 25082 | (dolist (x LIST) (pcase-let ((PATTERN x)) BODY...)) | 25104 | For each element of LIST, this macro binds the variables in |
| 25105 | PATTERN to the corresponding subfields of the LIST element, and | ||
| 25106 | then evaluates BODY with these bindings in effect. The | ||
| 25107 | destructuring bindings of variables in PATTERN to the subfields | ||
| 25108 | of 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 | |||
| 34501 | keymap or an alist of alists. | 34527 | keymap or an alist of alists. |
| 34502 | DEFAULT-ITEM, if non-nil, specifies an initial default choice. | 34528 | DEFAULT-ITEM, if non-nil, specifies an initial default choice. |
| 34503 | Its value should be an event that has a binding in MENU. | 34529 | Its value should be an event that has a binding in MENU. |
| 34530 | NO-EXECUTE, if non-nil, means to return the command the user selects | ||
| 34531 | instead 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 |
| 38530 | it is relative to the top edge (for positive ARG) or the bottom edge | 38566 | it 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. |
| 38532 | If no window is at the desired location, an error is signaled. | 38568 | If no window is at the desired location, an error is signaled |
| 38569 | unless `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\" | |||
| 38539 | is relative to the position of point in the window; otherwise it is | 38576 | is relative to the position of point in the window; otherwise it is |
| 38540 | relative to the left edge (for positive ARG) or the right edge (for | 38577 | relative to the left edge (for positive ARG) or the right edge (for |
| 38541 | negative ARG) of the current window. | 38578 | negative ARG) of the current window. |
| 38542 | If no window is at the desired location, an error is signaled. | 38579 | If no window is at the desired location, an error is signaled |
| 38580 | unless `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; |
| 38550 | otherwise it is relative to the top edge (for positive ARG) or the | 38588 | otherwise it is relative to the top edge (for positive ARG) or the |
| 38551 | bottom edge (for negative ARG) of the current window. | 38589 | bottom edge (for negative ARG) of the current window. |
| 38552 | If no window is at the desired location, an error is signaled. | 38590 | If no window is at the desired location, an error is signaled |
| 38591 | unless `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 |
| 38560 | it is relative to the left edge (for positive ARG) or the right edge | 38599 | it 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. |
| 38562 | If no window is at the desired location, an error is signaled. | 38601 | If no window is at the desired location, an error is signaled |
| 38602 | unless `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" "\ | ||
| 38615 | Display the next buffer in window to the left of the current one. | ||
| 38616 | See 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" "\ | ||
| 38621 | Display the next buffer in window above the current one. | ||
| 38622 | See 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" "\ | ||
| 38627 | Display the next buffer in window to the right of the current one. | ||
| 38628 | See 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" "\ | ||
| 38633 | Display the next buffer in window below the current one. | ||
| 38634 | See 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" "\ | ||
| 38639 | Display the next buffer in the same window. | ||
| 38640 | |||
| 38641 | \(fn &optional ARG)" t nil) | ||
| 38642 | |||
| 38643 | (autoload 'windmove-display-default-keybindings "windmove" "\ | ||
| 38644 | Set up keybindings for directional buffer display. | ||
| 38645 | Keys are bound to commands that display the next buffer in the specified | ||
| 38646 | direction. Keybindings are of the form MODIFIERS-{left,right,up,down}, | ||
| 38647 | where MODIFIERS is either a list of modifiers or a single modifier. | ||
| 38648 | Default value of MODIFIERS is `shift-meta'. | ||
| 38649 | |||
| 38650 | \(fn &optional MODIFIERS)" t nil) | ||
| 38651 | |||
| 38652 | (autoload 'windmove-delete-left "windmove" "\ | ||
| 38653 | Delete the window to the left of the current one. | ||
| 38654 | If prefix ARG is `C-u', delete the selected window and | ||
| 38655 | select 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" "\ | ||
| 38660 | Delete the window above the current one. | ||
| 38661 | If prefix ARG is `C-u', delete the selected window and | ||
| 38662 | select the window that was above the current one. | ||
| 38663 | |||
| 38664 | \(fn &optional ARG)" t nil) | ||
| 38665 | |||
| 38666 | (autoload 'windmove-delete-right "windmove" "\ | ||
| 38667 | Delete the window to the right of the current one. | ||
| 38668 | If prefix ARG is `C-u', delete the selected window and | ||
| 38669 | select 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" "\ | ||
| 38674 | Delete the window below the current one. | ||
| 38675 | If prefix ARG is `C-u', delete the selected window and | ||
| 38676 | select the window that was below the current one. | ||
| 38677 | |||
| 38678 | \(fn &optional ARG)" t nil) | ||
| 38679 | |||
| 38680 | (autoload 'windmove-delete-default-keybindings "windmove" "\ | ||
| 38681 | Set up keybindings for directional window deletion. | ||
| 38682 | Keys are bound to commands that delete windows in the specified | ||
| 38683 | direction. Keybindings are of the form PREFIX MODIFIERS-{left,right,up,down}, | ||
| 38684 | where PREFIX is a prefix key and MODIFIERS is either a list of modifiers or | ||
| 38685 | a 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 | ;;;*** |