aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLele Gaifax2022-07-01 18:03:57 +0200
committerEli Zaretskii2022-07-02 10:04:32 +0300
commit9dc0fdfdc14beb5d19b705b25bf01020df27541b (patch)
treeba124d3b7eb59edf888068af9108655f0e381f8e
parent9d14e0bf1e913fbb223241d246438e53bbc81431 (diff)
downloademacs-9dc0fdfdc14beb5d19b705b25bf01020df27541b.tar.gz
emacs-9dc0fdfdc14beb5d19b705b25bf01020df27541b.zip
Fix repeated "the"
* configure.ac (EMACS_CONFIG_FEATURES): * etc/NEWS: * lisp/dnd.el (dnd-begin-text-drag): * src/pgtkfns.c (Fx_display_mm_height, Fx_display_mm_width): (Fx_display_backing_store, Fx_display_visual_class): * src/xterm.c: Fix repeated "the". (Bug#56341) Copyright-paperwork-exempt: yes
-rw-r--r--configure.ac2
-rw-r--r--etc/NEWS2
-rw-r--r--lisp/dnd.el2
-rw-r--r--src/pgtkfns.c8
-rw-r--r--src/xterm.c2
5 files changed, 8 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac
index 17f86627a7d..ad3df5d7312 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6492,7 +6492,7 @@ AS_ECHO([" Does Emacs use -lXaw3d? ${HAVE_XAW3D
6492 Does Emacs support legacy unexec dumping? ${with_unexec} 6492 Does Emacs support legacy unexec dumping? ${with_unexec}
6493 Which dumping strategy does Emacs use? ${with_dumping} 6493 Which dumping strategy does Emacs use? ${with_dumping}
6494 Does Emacs have native lisp compiler? ${HAVE_NATIVE_COMP} 6494 Does Emacs have native lisp compiler? ${HAVE_NATIVE_COMP}
6495 Does Emacs use version 2 of the the X Input Extension? ${HAVE_XINPUT2} 6495 Does Emacs use version 2 of the X Input Extension? ${HAVE_XINPUT2}
6496 Does Emacs generate a smaller-size Japanese dictionary? ${with_small_ja_dic} 6496 Does Emacs generate a smaller-size Japanese dictionary? ${with_small_ja_dic}
6497"]) 6497"])
6498 6498
diff --git a/etc/NEWS b/etc/NEWS
index 3127e734261..30404cc13c2 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1012,7 +1012,7 @@ so automatically.
1012** Elisp 1012** Elisp
1013 1013
1014*** New command 'elisp-eval-buffer' (bound to 'C-c C-e'). 1014*** New command 'elisp-eval-buffer' (bound to 'C-c C-e').
1015This command evals the forms in the the current buffer. 1015This command evals the forms in the current buffer.
1016 1016
1017*** New commands 'elisp-byte-compile-file' and 'elisp-byte-compile-buffer'. 1017*** New commands 'elisp-byte-compile-file' and 'elisp-byte-compile-buffer'.
1018These commands (bound to 'C-c C-f' and 'C-c C-b', respectively) 1018These commands (bound to 'C-c C-f' and 'C-c C-b', respectively)
diff --git a/lisp/dnd.el b/lisp/dnd.el
index 29f4ca98ec8..ade61917e96 100644
--- a/lisp/dnd.el
+++ b/lisp/dnd.el
@@ -348,7 +348,7 @@ program where the drop happened. FRAME is the frame where the
348mouse is currently held down, or nil, which stands for the 348mouse is currently held down, or nil, which stands for the
349current frame. ACTION is one of the symbols `copy' or `move', 349current frame. ACTION is one of the symbols `copy' or `move',
350where `copy' means that the text should be inserted by the drop 350where `copy' means that the text should be inserted by the drop
351target, and `move' means the the same as `copy', but in addition 351target, and `move' means the same as `copy', but in addition
352the caller might have to delete TEXT from its source after this 352the caller might have to delete TEXT from its source after this
353function returns. If ALLOW-SAME-FRAME is nil, ignore any drops 353function returns. If ALLOW-SAME-FRAME is nil, ignore any drops
354on FRAME itself. 354on FRAME itself.
diff --git a/src/pgtkfns.c b/src/pgtkfns.c
index 4f15ec6ff66..5c43e5f3607 100644
--- a/src/pgtkfns.c
+++ b/src/pgtkfns.c
@@ -2043,7 +2043,7 @@ use `(length \(display-monitor-attributes-list TERMINAL))' instead. */)
2043 2043
2044 2044
2045DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0, 2045DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0,
2046 doc: /* Return the height in millimeters of the the display TERMINAL. 2046 doc: /* Return the height in millimeters of the display TERMINAL.
2047The optional argument TERMINAL specifies which display to ask about. 2047The optional argument TERMINAL specifies which display to ask about.
2048TERMINAL should be a terminal object, a frame or a display name (a string). 2048TERMINAL should be a terminal object, a frame or a display name (a string).
2049If omitted or nil, that stands for the selected frame's display. 2049If omitted or nil, that stands for the selected frame's display.
@@ -2084,7 +2084,7 @@ for each physical monitor, use `display-monitor-attributes-list'. */)
2084 2084
2085 2085
2086DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0, 2086DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
2087 doc: /* Return the width in millimeters of the the display TERMINAL. 2087 doc: /* Return the width in millimeters of the display TERMINAL.
2088The optional argument TERMINAL specifies which display to ask about. 2088The optional argument TERMINAL specifies which display to ask about.
2089TERMINAL should be a terminal object, a frame or a display name (a string). 2089TERMINAL should be a terminal object, a frame or a display name (a string).
2090If omitted or nil, that stands for the selected frame's display. 2090If omitted or nil, that stands for the selected frame's display.
@@ -2125,7 +2125,7 @@ for each physical monitor, use `display-monitor-attributes-list'. */)
2125 2125
2126 2126
2127DEFUN ("x-display-backing-store", Fx_display_backing_store, Sx_display_backing_store, 0, 1, 0, 2127DEFUN ("x-display-backing-store", Fx_display_backing_store, Sx_display_backing_store, 0, 1, 0,
2128 doc: /* Return an indication of whether the the display TERMINAL does backing store. 2128 doc: /* Return an indication of whether the display TERMINAL does backing store.
2129The value may be `buffered', `retained', or `non-retained'. 2129The value may be `buffered', `retained', or `non-retained'.
2130The optional argument TERMINAL specifies which display to ask about. 2130The optional argument TERMINAL specifies which display to ask about.
2131TERMINAL should be a terminal object, a frame or a display name (a string). 2131TERMINAL should be a terminal object, a frame or a display name (a string).
@@ -2138,7 +2138,7 @@ If omitted or nil, that stands for the selected frame's display. */)
2138 2138
2139 2139
2140DEFUN ("x-display-visual-class", Fx_display_visual_class, Sx_display_visual_class, 0, 1, 0, 2140DEFUN ("x-display-visual-class", Fx_display_visual_class, Sx_display_visual_class, 0, 1, 0,
2141 doc: /* Return the visual class of the the display TERMINAL. 2141 doc: /* Return the visual class of the display TERMINAL.
2142The value is one of the symbols `static-gray', `gray-scale', 2142The value is one of the symbols `static-gray', `gray-scale',
2143`static-color', `pseudo-color', `true-color', or `direct-color'. 2143`static-color', `pseudo-color', `true-color', or `direct-color'.
2144 2144
diff --git a/src/xterm.c b/src/xterm.c
index 061bca0684b..245ffedb800 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -497,7 +497,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
497 data.l[1] = timestamp 497 data.l[1] = timestamp
498 data.l[2] = low 32 bits of a provided frame counter value 498 data.l[2] = low 32 bits of a provided frame counter value
499 data.l[3] = high 32 bits of a provided frame counter value 499 data.l[3] = high 32 bits of a provided frame counter value
500 data.l[4] = 1 if the the extended frame counter should be updated, 500 data.l[4] = 1 if the extended frame counter should be updated,
501 otherwise 0 501 otherwise 0
502 502
503 Upon receiving such an event, Emacs constructs and saves a counter 503 Upon receiving such an event, Emacs constructs and saves a counter