diff --git a/etc/emacs_lldb.py b/etc/emacs_lldb.py index ccd86a4463e..03a58b49495 100644 --- a/etc/emacs_lldb.py +++ b/etc/emacs_lldb.py @@ -69,7 +69,7 @@ class Lisp_Object: "PVEC_MODULE_FUNCTION": "struct Lisp_Module_Function", "PVEC_NATIVE_COMP_UNIT": "struct Lisp_Native_Comp_Unit", "PVEC_SQLITE": "struct Lisp_Sqlite", - "PVEC_COMPILED": "struct Lisp_Vector", + "PVEC_CLOSURE": "struct Lisp_Vector", "PVEC_CHAR_TABLE": "struct Lisp_Vector", "PVEC_SUB_CHAR_TABLE": "void", "PVEC_RECORD": "struct Lisp_Vector", diff --git a/src/.lldbinit b/src/.lldbinit index 150421578cc..20a3dbf64d8 100644 --- a/src/.lldbinit +++ b/src/.lldbinit @@ -104,5 +104,9 @@ command alias go process launch --disable-aslr false --working-dir ../lisp #settings set -- target.run-args -batch --no-site-file --no-site-lisp --eval "(setq load-prefer-newer t byte-compile-warnings 'all)" --eval "(setq org--inhibit-version-check t)" -f batch-byte-compile leim/ja-dic/ja-dic.el #settings set target.disable-aslr false #command alias go process launch --working-dir ../lisp +#target create bootstrap-emacs +#settings set -- target.run-args -batch --no-site-file --no-site-lisp --eval "(setq load-prefer-newer t byte-compile-warnings 'all)" --eval "(setq org--inhibit-version-check t)" -l comp -f byte-compile-refresh-preloaded -f batch-byte+native-compile ../lisp/isearch.el +#command alias go process launch --disable-aslr false --working-dir . +#b wrong_type_argument # end.