aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/obarray.el (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * lisp/obarray.el (obarray-size): Avoid compiler warning.Stefan Monnier2017-03-181-3/+3
|
* Add obarray-size and fix tests accordingly. Use obarrayp in cedet.Stefan Monnier2017-03-161-0/+4
| | | | | | | | | | | | * lisp/obarray.el (obarray-size): New function. * lisp/cedet/semantic/lex-spp.el (semantic-lex-spp-symbol) (semantic-lex-spp-save-table, semantic-lex-spp-macros): * lisp/cedet/semantic/bovine/c.el (semantic-c-describe-environment): Use obarrayp. * test/lisp/obarray-tests.el (obarray-make-default-test) (obarray-make-with-size-test): Use it.
* Update copyright year to 2017Paul Eggert2016-12-311-1/+1
| | | | Run admin/update-copyright.
* Update copyright year to 2016Paul Eggert2016-01-011-1/+1
| | | | Run admin/update-copyright.
* * lisp/obarray.el: Fix shadowed variablesArtur Malabarba2015-11-111-12/+13
| | | | | (obarray-map, obarray-remove, obarray-put, obarray-get): Change OBARRAY arg to OB to avoid shadowing ‘obarray’.
* Rename obarray-p to obarraypNicolas Petton2015-11-111-1/+1
| | | | | * lisp/obarray.el (obarrayp): New name. * test/automated/obarray-tests.el: Update the tests.
* Rename obarray-foreach to obarray-mapNicolas Petton2015-11-111-1/+1
| | | | | * lisp/obarray.el (obarray-map): New name. * test/automated/obarray-tests.el: Update the corresponding tests.
* New file with obarray functions.Przemysław Wojnowski2015-11-111-0/+65
* lisp/obarray.el: basic obarray functions extracted from abbrev.el * test/automated/obarray-tests.el: new file