aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2020-04-13 09:02:29 -0700
committerGlenn Morris2020-04-13 09:02:29 -0700
commit0a4b992c422d98fbb351d3b03265eb1029012c1d (patch)
tree8216a67339ed2fecc3d889678278b9a3cb7fb914 /src
parentd0b9cf876fa62e3584a062e123a87e28278782cf (diff)
parent1dfc497fac22c199a944ef64233266bd6cd2fee6 (diff)
downloademacs-0a4b992c422d98fbb351d3b03265eb1029012c1d.tar.gz
emacs-0a4b992c422d98fbb351d3b03265eb1029012c1d.zip
Merge from origin/emacs-27
1dfc497fac Minor wording change in Introduction to Programming in Ema... ff09b4eeac Fix 'flymake-show-diagnostics-buffer' when line numbers ar... 63e8d0ea87 Fix last changes describing mail commands 01212a762f Do setup Flymake in file-less Elisp buffers 36873ef2b2 Fix error message for ‘cl-struct-unknown-slot’ (bug#39995) 3f9310b0fe Fix and improve documentation of mail-related features 1482a75efa Fix build failure with Fx_gtk_debug cf57663f2a Mention jit-lock deferred as an alternative to fast-but-im... # Conflicts: # etc/NEWS
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 10e1b5e58c2..1f381e2a8b0 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -7747,6 +7747,7 @@ Note: Text drawn with the `x' font backend is shown with hollow boxes. */)
7747 7747
7748#ifdef USE_GTK 7748#ifdef USE_GTK
7749#ifdef HAVE_GTK3 7749#ifdef HAVE_GTK3
7750#if GTK_CHECK_VERSION (3, 14, 0)
7750DEFUN ("x-gtk-debug", Fx_gtk_debug, Sx_gtk_debug, 1, 1, 0, 7751DEFUN ("x-gtk-debug", Fx_gtk_debug, Sx_gtk_debug, 1, 1, 0,
7751 doc: /* Toggle interactive GTK debugging. */) 7752 doc: /* Toggle interactive GTK debugging. */)
7752 (Lisp_Object enable) 7753 (Lisp_Object enable)
@@ -7759,6 +7760,7 @@ DEFUN ("x-gtk-debug", Fx_gtk_debug, Sx_gtk_debug, 1, 1, 0,
7759 7760
7760 return NILP (enable) ? Qnil : Qt; 7761 return NILP (enable) ? Qnil : Qt;
7761} 7762}
7763#endif /* GTK_CHECK_VERSION (3, 14, 0) */
7762#endif /* HAVE_GTK3 */ 7764#endif /* HAVE_GTK3 */
7763#endif /* USE_GTK */ 7765#endif /* USE_GTK */
7764 7766
@@ -8146,7 +8148,9 @@ eliminated in future versions of Emacs. */);
8146#endif 8148#endif
8147#ifdef USE_GTK 8149#ifdef USE_GTK
8148#ifdef HAVE_GTK3 8150#ifdef HAVE_GTK3
8151#if GTK_CHECK_VERSION (3, 14, 0)
8149 defsubr (&Sx_gtk_debug); 8152 defsubr (&Sx_gtk_debug);
8150#endif 8153#endif
8151#endif 8154#endif
8155#endif
8152} 8156}