; Fix some doc typos

This commit is contained in:
Glenn Morris 2017-11-22 17:52:11 -05:00
parent ed2c542920
commit 8e40429c96
7 changed files with 8 additions and 8 deletions

View file

@ -1020,7 +1020,7 @@ Manual}.
@cindex Horizontal Scroll Bar mode
On graphical displays with toolkit support, Emacs may also supply a
@dfn{horizontal scroll bar} on the bottom of each window. Clicking
@kbd{mouse-1} on the that scroll bar's left and right buttons scrolls
@kbd{mouse-1} on that scroll bar's left and right buttons scrolls
the window horizontally by one column at a time. Clicking @kbd{mouse-1}
on the left or right of the scroll bar's inner box scrolls the window by
four columns. Dragging the inner box scrolls the window continuously.

View file

@ -10976,7 +10976,7 @@ Pull all ticked articles (for the current group) into the summary buffer
@kindex A D (Summary)
@findex gnus-summary-enter-digest-group
If the current article is a collection of other articles (for instance,
a digest), you might use this command to enter a group based on the that
a digest), you might use this command to enter a group based on that
article (@code{gnus-summary-enter-digest-group}). Gnus will try to
guess what article type is currently displayed unless you give a prefix
to this command, which forces a ``digest'' interpretation. Basically,

View file

@ -5210,7 +5210,7 @@ If the category's done items are visible, this command called
with a prefix argument only moves point to a higher item, e.g.,
with point on the first done item and called with prefix 1, it
moves to the last todo item; but if called with point on the
first done item without a prefix argument, it moves point the the
first done item without a prefix argument, it moves point to the
empty line above the done items separator."
(let* ((done (todo-done-item-p)))
(todo-item-start)

View file

@ -1014,7 +1014,7 @@ ARGS are command switches passed to PROGRAM.")
"Control the compression shell command for `dired-do-compress-to'.
Each element is (REGEXP . CMD), where REGEXP is the name of the
archive to which you want to compress, and CMD the the
archive to which you want to compress, and CMD is the
corresponding command.
Within CMD, %i denotes the input file(s), and %o denotes the

View file

@ -650,7 +650,7 @@ STYLE is the inline CSS stylesheet (or tag referring to an external sheet)."
var even = false;
// if arguments are provided to specify the colors
// of the even & odd rows, then use the them;
// of the even & odd rows, then use them;
// otherwise use the following defaults:
var evenColor = arguments[1] ? arguments[1] : \"#fff\";
var oddColor = arguments[2] ? arguments[2] : \"#ddd\";

View file

@ -521,7 +521,7 @@ If no one is selected, symmetric encryption will be performed. "
t)))
(defun plstore-mode-original ()
"Show the original form of the this buffer."
"Show the original form of this buffer."
(interactive)
(when plstore-encoded
(if (and (buffer-modified-p)
@ -533,7 +533,7 @@ If no one is selected, symmetric encryption will be performed. "
(setq plstore-encoded nil)))
(defun plstore-mode-decoded ()
"Show the decoded form of the this buffer."
"Show the decoded form of this buffer."
(interactive)
(unless plstore-encoded
(if (and (buffer-modified-p)

View file

@ -4118,7 +4118,7 @@ The # flag means to use an alternate display form for %o, %x, %X, %e,
%f, and %g sequences: for %o, it ensures that the result begins with
\"0\"; for %x and %X, it prefixes the result with \"0x\" or \"0X\";
for %e and %f, it causes a decimal point to be included even if the
the precision is zero; for %g, it causes a decimal point to be
precision is zero; for %g, it causes a decimal point to be
included even if the precision is zero, and also forces trailing
zeros after the decimal point to be left in place.