summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/emacs/frames.texi2
-rw-r--r--doc/misc/gnus.texi2
-rw-r--r--lisp/calendar/todo-mode.el2
-rw-r--r--lisp/dired-aux.el2
-rw-r--r--lisp/htmlfontify.el2
-rw-r--r--lisp/plstore.el4
-rw-r--r--src/editfns.c2
7 files changed, 8 insertions, 8 deletions
diff --git a/doc/emacs/frames.texi b/doc/emacs/frames.texi
index 8c08f51825c..c94d690cf7f 100644
--- a/doc/emacs/frames.texi
+++ b/doc/emacs/frames.texi
@@ -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.
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi
index d1f31a33dd8..318f5105883 100644
--- a/doc/misc/gnus.texi
+++ b/doc/misc/gnus.texi
@@ -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,
diff --git a/lisp/calendar/todo-mode.el b/lisp/calendar/todo-mode.el
index 3e568213a63..0ae59c58804 100644
--- a/lisp/calendar/todo-mode.el
+++ b/lisp/calendar/todo-mode.el
@@ -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)
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index 8fb2c1ff948..12a53e87057 100644
--- a/lisp/dired-aux.el
+++ b/lisp/dired-aux.el
@@ -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
diff --git a/lisp/htmlfontify.el b/lisp/htmlfontify.el
index 791b110bf49..a4c68d329b7 100644
--- a/lisp/htmlfontify.el
+++ b/lisp/htmlfontify.el
@@ -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\";
diff --git a/lisp/plstore.el b/lisp/plstore.el
index b49e3d40fc4..da260096eaf 100644
--- a/lisp/plstore.el
+++ b/lisp/plstore.el
@@ -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)
diff --git a/src/editfns.c b/src/editfns.c
index 81cda4af062..f275f33fc52 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -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.