From 072e89afa119c0e35321edfb8bc0dfff89b6960d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gerd=20M=C3=B6llmann?= Date: Sat, 15 Oct 2022 14:13:56 +0200 Subject: [PATCH] Use make-package instead of make-vector * lisp/cedet/semantic/lex.el (semantic-lex-make-type-table): Don't use obarray functionality. --- lisp/cedet/semantic/lex.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/cedet/semantic/lex.el b/lisp/cedet/semantic/lex.el index b3c9e96538c..8aee46211cc 100644 --- a/lisp/cedet/semantic/lex.el +++ b/lisp/cedet/semantic/lex.el @@ -416,7 +416,7 @@ If optional argument PROPSPECS is non-nil, then interpret it, and apply those properties. PROPSPECS must be a list of (TYPE PROPERTY VALUE)." ;; Create the symbol hash table - (let* ((semantic-lex-types-obarray (make-vector 13 0)) + (let* ((semantic-lex-types-obarray (make-package "semantic-lex-types-obarray")) spec type tokens token alist default) ;; fill it with stuff (while specs -- 2.39.2