aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2020-07-11 12:47:26 +0300
committerEli Zaretskii2020-07-11 12:47:26 +0300
commitc04b92104c2bc4c1a719e06fbe11045a204c36a0 (patch)
treee418fca754b0c98a86c54aa9f3b2cf1d581e5d8a
parent6290850dac130521551913ce78671fcccfe5c0f3 (diff)
downloademacs-c04b92104c2bc4c1a719e06fbe11045a204c36a0.tar.gz
emacs-c04b92104c2bc4c1a719e06fbe11045a204c36a0.zip
Add commentary in gtkutil.c
* src/gtkutil.c: Add a comment regarding the incompatibilities vis-a-vis GTK. Suggested by Richard Stallman <rms@gnu.org>.
-rw-r--r--src/gtkutil.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gtkutil.c b/src/gtkutil.c
index 466cb42c7ee..df537c515a2 100644
--- a/src/gtkutil.c
+++ b/src/gtkutil.c
@@ -17,6 +17,13 @@ GNU General Public License for more details.
17You should have received a copy of the GNU General Public License 17You should have received a copy of the GNU General Public License
18along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ 18along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
19 19
20/* FIXME: This code is problematic; it misuses GTK, so the GTK
21 developers don't think they should fix the resulting problems in GTK
22 itself. The right way to fix this is by rewriting the code in Emacs
23 to use GTK3 properly. As of 2020, there is a project to do this.
24 Talk with Yuuki Harano <masm+emacs@masm11.me> if you are interested
25 in doing substantial work on this. */
26
20#include <config.h> 27#include <config.h>
21 28
22#ifdef USE_GTK 29#ifdef USE_GTK