mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-18 12:00:38 -07:00
add support for native comp unit to type-of
This commit is contained in:
parent
b275ddd63a
commit
5dae0a9a55
1 changed files with 3 additions and 0 deletions
|
|
@ -265,6 +265,8 @@ for example, (type-of 1) returns `integer'. */)
|
|||
}
|
||||
case PVEC_MODULE_FUNCTION:
|
||||
return Qmodule_function;
|
||||
case PVEC_NATIVE_COMP_UNIT:
|
||||
return Qnative_comp_unit;
|
||||
case PVEC_XWIDGET:
|
||||
return Qxwidget;
|
||||
case PVEC_XWIDGET_VIEW:
|
||||
|
|
@ -3876,6 +3878,7 @@ syms_of_data (void)
|
|||
DEFSYM (Qoverlay, "overlay");
|
||||
DEFSYM (Qfinalizer, "finalizer");
|
||||
DEFSYM (Qmodule_function, "module-function");
|
||||
DEFSYM (Qnative_comp_unit, "native-comp-unit");
|
||||
DEFSYM (Quser_ptr, "user-ptr");
|
||||
DEFSYM (Qfloat, "float");
|
||||
DEFSYM (Qwindow_configuration, "window-configuration");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue