diff options
Diffstat (limited to 'src/xsettings.c')
-rw-r--r-- | src/xsettings.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/xsettings.c b/src/xsettings.c index 60b86f43a87..0c5e36d9d69 100644 --- a/src/xsettings.c +++ b/src/xsettings.c @@ -32,6 +32,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ #include "keyboard.h" #include "blockinput.h" #include "termhooks.h" +#include "pdumper.h" #include <X11/Xproto.h> @@ -1023,13 +1024,18 @@ void syms_of_xsettings (void) { current_mono_font = NULL; + PDUMPER_IGNORE (current_mono_font); current_font = NULL; + PDUMPER_IGNORE (current_font); first_dpyinfo = NULL; + PDUMPER_IGNORE (first_dpyinfo); #ifdef HAVE_GSETTINGS gsettings_client = NULL; + PDUMPER_IGNORE (gsettings_client); #endif #ifdef HAVE_GCONF gconf_client = NULL; + PDUMPER_IGNORE (gconf_client); #endif DEFSYM (Qmonospace_font_name, "monospace-font-name"); |