From f29181dc5d953bd811e723489d59838a71152739 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Fri, 8 Aug 2003 23:14:48 +0000 Subject: [PATCH] (mark_object): Handle Lisp_Misc_Save_Value. --- src/ChangeLog | 2 ++ src/alloc.c | 1 + 2 files changed, 3 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 9221e1a1d45..5869cfef7ad 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2003-08-09 Andreas Schwab + * alloc.c (mark_object): Handle Lisp_Misc_Save_Value. + * print.c (print_string): Fix printing of multibyte string with nontrivial printcharfun. diff --git a/src/alloc.c b/src/alloc.c index 102bc637b58..7f05cf77937 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -5024,6 +5024,7 @@ mark_object (arg) since all markable slots in current buffer marked anyway. */ /* Don't need to do Lisp_Objfwd, since the places they point are protected with staticpro. */ + case Lisp_Misc_Save_Value: break; case Lisp_Misc_Overlay: -- 2.39.2