diff options
| author | Andreas Schwab | 2003-08-08 23:14:48 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2003-08-08 23:14:48 +0000 |
| commit | f29181dc5d953bd811e723489d59838a71152739 (patch) | |
| tree | 9cb948eaeedc15b4caec4eb6c1e68aed21dbd0db /src | |
| parent | 1661e56b9c4a0c3248f214987b6bcae053c80428 (diff) | |
| download | emacs-f29181dc5d953bd811e723489d59838a71152739.tar.gz emacs-f29181dc5d953bd811e723489d59838a71152739.zip | |
(mark_object): Handle Lisp_Misc_Save_Value.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/alloc.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9221e1a1d45..5869cfef7ad 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2003-08-09 Andreas Schwab <schwab@suse.de> | 1 | 2003-08-09 Andreas Schwab <schwab@suse.de> |
| 2 | 2 | ||
| 3 | * alloc.c (mark_object): Handle Lisp_Misc_Save_Value. | ||
| 4 | |||
| 3 | * print.c (print_string): Fix printing of multibyte string with | 5 | * print.c (print_string): Fix printing of multibyte string with |
| 4 | nontrivial printcharfun. | 6 | nontrivial printcharfun. |
| 5 | 7 | ||
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) | |||
| 5024 | since all markable slots in current buffer marked anyway. */ | 5024 | since all markable slots in current buffer marked anyway. */ |
| 5025 | /* Don't need to do Lisp_Objfwd, since the places they point | 5025 | /* Don't need to do Lisp_Objfwd, since the places they point |
| 5026 | are protected with staticpro. */ | 5026 | are protected with staticpro. */ |
| 5027 | case Lisp_Misc_Save_Value: | ||
| 5027 | break; | 5028 | break; |
| 5028 | 5029 | ||
| 5029 | case Lisp_Misc_Overlay: | 5030 | case Lisp_Misc_Overlay: |