diff options
author | Eli Zaretskii <eliz@gnu.org> | 2020-07-11 12:47:26 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2020-07-11 12:47:26 +0300 |
commit | c04b92104c2bc4c1a719e06fbe11045a204c36a0 (patch) | |
tree | e418fca754b0c98a86c54aa9f3b2cf1d581e5d8a /src/gtkutil.c | |
parent | 6290850dac130521551913ce78671fcccfe5c0f3 (diff) | |
download | emacs-c04b92104c2bc4c1a719e06fbe11045a204c36a0.tar.gz |
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>.
Diffstat (limited to 'src/gtkutil.c')
-rw-r--r-- | src/gtkutil.c | 7 |
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. You should have received a copy of the GNU General Public License along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ +/* FIXME: This code is problematic; it misuses GTK, so the GTK + developers don't think they should fix the resulting problems in GTK + itself. The right way to fix this is by rewriting the code in Emacs + to use GTK3 properly. As of 2020, there is a project to do this. + Talk with Yuuki Harano <masm+emacs@masm11.me> if you are interested + in doing substantial work on this. */ + #include <config.h> #ifdef USE_GTK |