projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c57a03c
)
Work around bad GCC diagnostic in select_window
author
Paul Eggert
<eggert@cs.ucla.edu>
Tue, 30 Apr 2024 08:20:13 +0000
(
01:20
-0700)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Tue, 30 Apr 2024 08:26:24 +0000
(
01:26
-0700)
* src/textconv.c (select_window): Add an eassume to work
around GCC bug 114893.
src/textconv.c
patch
|
blob
|
history
diff --git
a/src/textconv.c
b/src/textconv.c
index 8850f3cc6bee3f27bbbb76393392344b2218a4b4..06d9af335c5a0f6c78256333f01048b485717bf9 100644
(file)
--- a/
src/textconv.c
+++ b/
src/textconv.c
@@
-141,6
+141,10
@@
select_window (Lisp_Object window, Lisp_Object norecord)
w = XWINDOW (window);
+ /* Work around GCC bug 114893
+ <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114893>. */
+ eassume (w);
+
if (MINI_WINDOW_P (w)
&& WINDOW_LIVE_P (window)
&& !EQ (window, Factive_minibuffer_window ()))