]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix some doc typos
authorGlenn Morris <rgm@gnu.org>
Wed, 22 Nov 2017 22:52:11 +0000 (17:52 -0500)
committerGlenn Morris <rgm@gnu.org>
Wed, 22 Nov 2017 22:52:11 +0000 (17:52 -0500)
doc/emacs/frames.texi
doc/misc/gnus.texi
lisp/calendar/todo-mode.el
lisp/dired-aux.el
lisp/htmlfontify.el
lisp/plstore.el
src/editfns.c

index 8c08f51825c328f164e4f0a266bb48d367982080..c94d690cf7fdcba34fc54c1f5b8a6d9d731e4f69 100644 (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.
index d1f31a33dd84aa22817bf1365d3af3e59d0a24f5..318f5105883f5ed5371ebb09c0fc57a862377158 100644 (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,
index 3e568213a63b37ccf268e3b94fad8290096320c3..0ae59c588045ba91c6dd850e6e1feaa0e2e3f67a 100644 (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)
index 8fb2c1ff9483da7f7271164354d00dccc8d2fac8..12a53e870578064d47c46fcd77ae26bf2ef03aa3 100644 (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
index 791b110bf49512bff60be716b09266f01d6e9811..a4c68d329b78f3988b9abb31a015587cda5759cd 100644 (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\";
index b49e3d40fc4ff920c8511f4d088dfdc71f177be8..da260096eaf5a4a85407ccd46774e4d758bddba1 100644 (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)
index 81cda4af0629e3787dfcb013b3ae8afe27a26011..f275f33fc52fab487169850b578d9f7689a87a35 100644 (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.