From e0cbb1eb7d00e94bbf96cf6a8e45c5285a598838 Mon Sep 17 00:00:00 2001 From: Helmut Eller Date: Tue, 30 Apr 2024 20:40:10 +0200 Subject: [PATCH] Staticpro cached_system_name only if HAVE_MPS * src/editfns.c (syms_of_editfns): --- src/editfns.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/editfns.c b/src/editfns.c index 3e0e5856185..fc297896119 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -4778,9 +4778,11 @@ syms_of_editfns (void) DEFSYM (Qwall, "wall"); DEFSYM (Qpropertize, "propertize"); +#ifdef HAVE_MPS cached_system_name = Qnil; staticpro (&cached_system_name); labeled_restrictions = Qnil; +#endif staticpro (&labeled_restrictions); DEFVAR_LISP ("inhibit-field-text-motion", Vinhibit_field_text_motion, -- 2.39.2