Skip to content

Commit fb65a36

Browse files
committed
Fix ibuffer-unmark-backward synopsis (bug#35572)
* lisp/ibuffer.el (ibuffer-mode): Fix synopsis of ibuffer-unmark-backward along with other minor copy-edits.
1 parent f77bd2b commit fb65a36

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

lisp/ibuffer.el

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2523,8 +2523,8 @@ particular subset of them, and sorting by various criteria.
25232523
25242524
Operations on marked buffers:
25252525
\\<ibuffer-mode-map>
2526-
`\\[ibuffer-do-save]' - Save the marked buffers
2527-
`\\[ibuffer-do-view]' - View the marked buffers in this frame.
2526+
`\\[ibuffer-do-save]' - Save the marked buffers.
2527+
`\\[ibuffer-do-view]' - View the marked buffers in the selected frame.
25282528
`\\[ibuffer-do-view-other-frame]' - View the marked buffers in another frame.
25292529
`\\[ibuffer-do-revert]' - Revert the marked buffers.
25302530
`\\[ibuffer-do-toggle-read-only]' - Toggle read-only state of marked buffers.
@@ -2547,7 +2547,7 @@ Operations on marked buffers:
25472547
buffer's file as an argument.
25482548
`\\[ibuffer-do-eval]' - Evaluate a form in each of the marked buffers. This
25492549
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
25512551
the input form.
25522552
`\\[ibuffer-do-view-and-eval]' - As above, but view each buffer while the form
25532553
is evaluated.
@@ -2562,21 +2562,20 @@ Marking commands:
25622562
all unmarked buffers.
25632563
`\\[ibuffer-change-marks]' - Change the mark used on marked buffers.
25642564
`\\[ibuffer-unmark-forward]' - Unmark the buffer at point.
2565-
`\\[ibuffer-unmark-backward]' - Unmark the buffer at point, and move to the
2566-
previous line.
2565+
`\\[ibuffer-unmark-backward]' - Unmark the previous buffer.
25672566
`\\[ibuffer-unmark-all]' - Unmark buffers marked with MARK.
25682567
`\\[ibuffer-unmark-all-marks]' - Unmark all marked buffers.
25692568
`\\[ibuffer-mark-by-mode]' - Mark buffers by major mode.
25702569
`\\[ibuffer-mark-unsaved-buffers]' - Mark all \"unsaved\" buffers.
25712570
This means that the buffer is modified, and has an associated file.
25722571
`\\[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.
25742573
`\\[ibuffer-mark-special-buffers]' - Mark all buffers whose name begins and
25752574
ends with `*'.
25762575
`\\[ibuffer-mark-dissociated-buffers]' - Mark all buffers which have
25772576
an associated file, but that file doesn't currently exist.
25782577
`\\[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'.
25802579
`\\[ibuffer-mark-help-buffers]' - Mark buffers in `help-mode', `apropos-mode', etc.
25812580
`\\[ibuffer-mark-old-buffers]' - Mark buffers older than `ibuffer-old-time'.
25822581
`\\[ibuffer-mark-for-delete]' - Mark the buffer at point for deletion.
@@ -2655,17 +2654,17 @@ Other commands:
26552654
26562655
** Information on Filtering:
26572656
2658-
You can filter your ibuffer view via different criteria. Each Ibuffer
2657+
You can filter your Ibuffer view via different criteria. Each Ibuffer
26592658
buffer has its own stack of active filters. For example, suppose you
26602659
are working on an Emacs Lisp project. You can create an Ibuffer
2661-
buffer displays buffers in just `emacs-lisp' modes via
2660+
buffer displaying only `emacs-lisp-mode' buffers via
26622661
`\\[ibuffer-filter-by-mode] emacs-lisp-mode RET'. In this case, there
26632662
is just one entry on the filtering stack.
26642663
26652664
You can also combine filters. The various filtering commands push a
26662665
new filter onto the stack, and the filters combine to show just
26672666
buffers which satisfy ALL criteria on the stack. For example, suppose
2668-
you only want to see buffers in `emacs-lisp' mode, whose names begin
2667+
you only want to see buffers in `emacs-lisp-mode', whose names begin
26692668
with \"gnus\". You can accomplish this via:
26702669
26712670
\\[ibuffer-filter-by-mode] emacs-lisp-mode RET
@@ -2709,8 +2708,8 @@ will not be displayed multiple times if they would be included in
27092708
multiple filter groups; instead, the first filter group is used. The
27102709
filter groups are displayed in this order of precedence.
27112710
2712-
You may rearrange filter groups by using the regular
2713-
`\\[ibuffer-kill-line]' and `\\[ibuffer-yank]' pair. Yanked groups
2711+
You may rearrange filter groups by using the usual pair
2712+
`\\[ibuffer-kill-line]' and `\\[ibuffer-yank]'. Yanked groups
27142713
will be inserted before the group at point."
27152714
;; Include state info next to the mode name.
27162715
(set (make-local-variable 'mode-line-process)

0 commit comments

Comments
 (0)