aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBasil L. Contovounesios2019-05-07 01:40:22 +0100
committerBasil L. Contovounesios2019-05-07 01:43:46 +0100
commitfb65a36f4587726b3de0df02daf02c28e9129f62 (patch)
tree5eb4da7df19df5551ebf0887e89bfb4cefbe6780
parentf77bd2b4ed59370876f5c177398ae3e1683b71f9 (diff)
downloademacs-fb65a36f4587726b3de0df02daf02c28e9129f62.tar.gz
emacs-fb65a36f4587726b3de0df02daf02c28e9129f62.zip
Fix ibuffer-unmark-backward synopsis (bug#35572)
* lisp/ibuffer.el (ibuffer-mode): Fix synopsis of ibuffer-unmark-backward along with other minor copy-edits.
-rw-r--r--lisp/ibuffer.el23
1 files changed, 11 insertions, 12 deletions
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el
index 66a7087b9b8..8cb9a97d92c 100644
--- a/lisp/ibuffer.el
+++ b/lisp/ibuffer.el
@@ -2523,8 +2523,8 @@ particular subset of them, and sorting by various criteria.
2523 2523
2524Operations on marked buffers: 2524Operations on marked buffers:
2525\\<ibuffer-mode-map> 2525\\<ibuffer-mode-map>
2526 `\\[ibuffer-do-save]' - Save the marked buffers 2526 `\\[ibuffer-do-save]' - Save the marked buffers.
2527 `\\[ibuffer-do-view]' - View the marked buffers in this frame. 2527 `\\[ibuffer-do-view]' - View the marked buffers in the selected frame.
2528 `\\[ibuffer-do-view-other-frame]' - View the marked buffers in another frame. 2528 `\\[ibuffer-do-view-other-frame]' - View the marked buffers in another frame.
2529 `\\[ibuffer-do-revert]' - Revert the marked buffers. 2529 `\\[ibuffer-do-revert]' - Revert the marked buffers.
2530 `\\[ibuffer-do-toggle-read-only]' - Toggle read-only state of marked buffers. 2530 `\\[ibuffer-do-toggle-read-only]' - Toggle read-only state of marked buffers.
@@ -2547,7 +2547,7 @@ Operations on marked buffers:
2547 buffer's file as an argument. 2547 buffer's file as an argument.
2548 `\\[ibuffer-do-eval]' - Evaluate a form in each of the marked buffers. This 2548 `\\[ibuffer-do-eval]' - Evaluate a form in each of the marked buffers. This
2549 is a very flexible command. For example, if you want to make all 2549 is a very flexible command. For example, if you want to make all
2550 of the marked buffers read only, try using (read-only-mode 1) as 2550 of the marked buffers read-only, try using (read-only-mode 1) as
2551 the input form. 2551 the input form.
2552 `\\[ibuffer-do-view-and-eval]' - As above, but view each buffer while the form 2552 `\\[ibuffer-do-view-and-eval]' - As above, but view each buffer while the form
2553 is evaluated. 2553 is evaluated.
@@ -2562,21 +2562,20 @@ Marking commands:
2562 all unmarked buffers. 2562 all unmarked buffers.
2563 `\\[ibuffer-change-marks]' - Change the mark used on marked buffers. 2563 `\\[ibuffer-change-marks]' - Change the mark used on marked buffers.
2564 `\\[ibuffer-unmark-forward]' - Unmark the buffer at point. 2564 `\\[ibuffer-unmark-forward]' - Unmark the buffer at point.
2565 `\\[ibuffer-unmark-backward]' - Unmark the buffer at point, and move to the 2565 `\\[ibuffer-unmark-backward]' - Unmark the previous buffer.
2566 previous line.
2567 `\\[ibuffer-unmark-all]' - Unmark buffers marked with MARK. 2566 `\\[ibuffer-unmark-all]' - Unmark buffers marked with MARK.
2568 `\\[ibuffer-unmark-all-marks]' - Unmark all marked buffers. 2567 `\\[ibuffer-unmark-all-marks]' - Unmark all marked buffers.
2569 `\\[ibuffer-mark-by-mode]' - Mark buffers by major mode. 2568 `\\[ibuffer-mark-by-mode]' - Mark buffers by major mode.
2570 `\\[ibuffer-mark-unsaved-buffers]' - Mark all \"unsaved\" buffers. 2569 `\\[ibuffer-mark-unsaved-buffers]' - Mark all \"unsaved\" buffers.
2571 This means that the buffer is modified, and has an associated file. 2570 This means that the buffer is modified, and has an associated file.
2572 `\\[ibuffer-mark-modified-buffers]' - Mark all modified buffers, 2571 `\\[ibuffer-mark-modified-buffers]' - Mark all modified buffers,
2573 regardless of whether or not they have an associated file. 2572 regardless of whether they have an associated file.
2574 `\\[ibuffer-mark-special-buffers]' - Mark all buffers whose name begins and 2573 `\\[ibuffer-mark-special-buffers]' - Mark all buffers whose name begins and
2575 ends with `*'. 2574 ends with `*'.
2576 `\\[ibuffer-mark-dissociated-buffers]' - Mark all buffers which have 2575 `\\[ibuffer-mark-dissociated-buffers]' - Mark all buffers which have
2577 an associated file, but that file doesn't currently exist. 2576 an associated file, but that file doesn't currently exist.
2578 `\\[ibuffer-mark-read-only-buffers]' - Mark all read-only buffers. 2577 `\\[ibuffer-mark-read-only-buffers]' - Mark all read-only buffers.
2579 `\\[ibuffer-mark-dired-buffers]' - Mark buffers in `dired' mode. 2578 `\\[ibuffer-mark-dired-buffers]' - Mark buffers in `dired-mode'.
2580 `\\[ibuffer-mark-help-buffers]' - Mark buffers in `help-mode', `apropos-mode', etc. 2579 `\\[ibuffer-mark-help-buffers]' - Mark buffers in `help-mode', `apropos-mode', etc.
2581 `\\[ibuffer-mark-old-buffers]' - Mark buffers older than `ibuffer-old-time'. 2580 `\\[ibuffer-mark-old-buffers]' - Mark buffers older than `ibuffer-old-time'.
2582 `\\[ibuffer-mark-for-delete]' - Mark the buffer at point for deletion. 2581 `\\[ibuffer-mark-for-delete]' - Mark the buffer at point for deletion.
@@ -2655,17 +2654,17 @@ Other commands:
2655 2654
2656** Information on Filtering: 2655** Information on Filtering:
2657 2656
2658 You can filter your ibuffer view via different criteria. Each Ibuffer 2657You can filter your Ibuffer view via different criteria. Each Ibuffer
2659buffer has its own stack of active filters. For example, suppose you 2658buffer has its own stack of active filters. For example, suppose you
2660are working on an Emacs Lisp project. You can create an Ibuffer 2659are working on an Emacs Lisp project. You can create an Ibuffer
2661buffer displays buffers in just `emacs-lisp' modes via 2660buffer displaying only `emacs-lisp-mode' buffers via
2662`\\[ibuffer-filter-by-mode] emacs-lisp-mode RET'. In this case, there 2661`\\[ibuffer-filter-by-mode] emacs-lisp-mode RET'. In this case, there
2663is just one entry on the filtering stack. 2662is just one entry on the filtering stack.
2664 2663
2665You can also combine filters. The various filtering commands push a 2664You can also combine filters. The various filtering commands push a
2666new filter onto the stack, and the filters combine to show just 2665new filter onto the stack, and the filters combine to show just
2667buffers which satisfy ALL criteria on the stack. For example, suppose 2666buffers which satisfy ALL criteria on the stack. For example, suppose
2668you only want to see buffers in `emacs-lisp' mode, whose names begin 2667you only want to see buffers in `emacs-lisp-mode', whose names begin
2669with \"gnus\". You can accomplish this via: 2668with \"gnus\". You can accomplish this via:
2670 2669
2671 \\[ibuffer-filter-by-mode] emacs-lisp-mode RET 2670 \\[ibuffer-filter-by-mode] emacs-lisp-mode RET
@@ -2709,8 +2708,8 @@ will not be displayed multiple times if they would be included in
2709multiple filter groups; instead, the first filter group is used. The 2708multiple filter groups; instead, the first filter group is used. The
2710filter groups are displayed in this order of precedence. 2709filter groups are displayed in this order of precedence.
2711 2710
2712You may rearrange filter groups by using the regular 2711You may rearrange filter groups by using the usual pair
2713`\\[ibuffer-kill-line]' and `\\[ibuffer-yank]' pair. Yanked groups 2712`\\[ibuffer-kill-line]' and `\\[ibuffer-yank]'. Yanked groups
2714will be inserted before the group at point." 2713will be inserted before the group at point."
2715 ;; Include state info next to the mode name. 2714 ;; Include state info next to the mode name.
2716 (set (make-local-variable 'mode-line-process) 2715 (set (make-local-variable 'mode-line-process)