2015-11-08 16:59:07 +01:00
|
|
|
|
;;; obarray.el --- obarray functions -*- lexical-binding: t -*-
|
|
|
|
|
|
2024-01-02 09:47:10 +08:00
|
|
|
|
;; Copyright (C) 2015-2024 Free Software Foundation, Inc.
|
2015-11-08 16:59:07 +01:00
|
|
|
|
|
2019-05-25 13:43:06 -07:00
|
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
2015-11-08 16:59:07 +01:00
|
|
|
|
;; Keywords: obarray functions
|
|
|
|
|
;; Package: emacs
|
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2015-11-08 16:59:07 +01:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; This file provides function for working with obarrays.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
Add a proper type for obarrays
The new opaque type replaces the previous use of vectors for obarrays.
`obarray-make` now returns objects of this type. Functions that take
obarrays continue to accept vectors for compatibility, now just using
their first slot to store an actual obarray object.
obarray-size and obarray-default-size now obsolete.
* lisp/obarray.el (obarray-default-size, obarray-size):
Declare obsolete.
(obarray-make, obarrayp, obarray-clear): Remove from here.
* src/fns.c (reduce_emacs_uint_to_hash_hash): Remove from here.
* src/lisp.h (struct Lisp_Obarray, OBARRAYP, XOBARRAY, CHECK_OBARRAY)
(make_lisp_obarray, obarray_size, check_obarray)
(obarray_iter_t, make_obarray_iter, obarray_iter_at_end)
(obarray_iter_step, obarray_iter_symbol, DOOBARRAY, knuth_hash): New.
(reduce_emacs_uint_to_hash_hash): Moved here.
* src/lread.c (check_obarray): Renamed and reworked as...
(checked_obarray_slow): ...this.
(intern_sym, Funintern, oblookup, map_obarray)
(Finternal__obarray_buckets): Adapt to new type.
(obarray_index, allocate_obarray, make_obarray, grow_obarray)
(obarray_default_bits, Fobarray_make, Fobarrayp, Fobarray_clear): New.
* etc/emacs_lldb.py (Lisp_Object):
* lisp/emacs-lisp/cl-macs.el (`(,type . ,pred)):
* lisp/emacs-lisp/cl-preloaded.el (cl--typeof-types):
* lisp/emacs-lisp/comp-common.el (comp-known-type-specifiers):
* lisp/emacs-lisp/comp.el (comp-known-predicates):
* src/alloc.c (cleanup_vector, process_mark_stack):
* src/data.c (Ftype_of, syms_of_data):
* src/minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
* src/pdumper.c (dump_obarray_buckets, dump_obarray, dump_vectorlike):
* src/print.c (print_vectorlike_unreadable):
* test/lisp/abbrev-tests.el (abbrev-make-abbrev-table-test):
* test/lisp/obarray-tests.el (obarrayp-test)
(obarrayp-unchecked-content-test, obarray-make-default-test)
(obarray-make-with-size-test):
Adapt to new type.
2024-02-10 21:14:09 +01:00
|
|
|
|
(defconst obarray-default-size 4)
|
|
|
|
|
(make-obsolete-variable 'obarray-default-size
|
2024-02-29 16:21:05 +01:00
|
|
|
|
"obarrays now grow automatically." "30.1")
|
2015-11-08 16:59:07 +01:00
|
|
|
|
|
2024-02-29 16:21:05 +01:00
|
|
|
|
(defun obarray-size (_ob)
|
|
|
|
|
(declare (obsolete "obarrays now grow automatically." "30.1"))
|
|
|
|
|
obarray-default-size)
|
2015-11-08 16:59:07 +01:00
|
|
|
|
|
2015-11-11 22:30:22 +00:00
|
|
|
|
;; Don’t use obarray as a variable name to avoid shadowing.
|
|
|
|
|
(defun obarray-get (ob name)
|
|
|
|
|
"Return symbol named NAME if it is contained in obarray OB.
|
2015-11-08 16:59:07 +01:00
|
|
|
|
Return nil otherwise."
|
2015-11-11 22:30:22 +00:00
|
|
|
|
(intern-soft name ob))
|
2015-11-08 16:59:07 +01:00
|
|
|
|
|
2015-11-11 22:30:22 +00:00
|
|
|
|
(defun obarray-put (ob name)
|
|
|
|
|
"Return symbol named NAME from obarray OB.
|
2024-02-29 16:21:05 +01:00
|
|
|
|
Creates and adds the symbol if it doesn't exist."
|
2015-11-11 22:30:22 +00:00
|
|
|
|
(intern name ob))
|
2015-11-08 16:59:07 +01:00
|
|
|
|
|
2015-11-11 22:30:22 +00:00
|
|
|
|
(defun obarray-remove (ob name)
|
|
|
|
|
"Remove symbol named NAME if it is contained in obarray OB.
|
2015-11-08 16:59:07 +01:00
|
|
|
|
Return t on success, nil otherwise."
|
2015-11-11 22:30:22 +00:00
|
|
|
|
(unintern name ob))
|
2015-11-08 16:59:07 +01:00
|
|
|
|
|
2015-11-11 22:30:22 +00:00
|
|
|
|
(defun obarray-map (fn ob)
|
|
|
|
|
"Call function FN on every symbol in obarray OB and return nil."
|
|
|
|
|
(mapatoms fn ob))
|
2015-11-08 16:59:07 +01:00
|
|
|
|
|
|
|
|
|
(provide 'obarray)
|
|
|
|
|
;;; obarray.el ends here
|