mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 03:40:56 -08:00
* src/pdumper.c (dump_vectorlike): Handle PVEC_SYMBOL_WITH_POS.
This commit is contained in:
parent
dae4fa9986
commit
63255de48b
1 changed files with 3 additions and 1 deletions
|
|
@ -2948,7 +2948,7 @@ dump_vectorlike (struct dump_context *ctx,
|
|||
Lisp_Object lv,
|
||||
dump_off offset)
|
||||
{
|
||||
#if CHECK_STRUCTS && !defined HASH_pvec_type_19F6CF5169
|
||||
#if CHECK_STRUCTS && !defined HASH_pvec_type_AFF6FED5BD
|
||||
# error "pvec_type changed. See CHECK_STRUCTS comment in config.h."
|
||||
#endif
|
||||
const struct Lisp_Vector *v = XVECTOR (lv);
|
||||
|
|
@ -3032,6 +3032,8 @@ dump_vectorlike (struct dump_context *ctx,
|
|||
error_unsupported_dump_object (ctx, lv, "sqlite");
|
||||
case PVEC_MODULE_FUNCTION:
|
||||
error_unsupported_dump_object (ctx, lv, "module function");
|
||||
case PVEC_SYMBOL_WITH_POS:
|
||||
error_unsupported_dump_object (ctx, lv, "symbol with pos");
|
||||
default:
|
||||
error_unsupported_dump_object(ctx, lv, "weird pseudovector");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue