From 20aea4293439281570c5c05d3f54bc5b261a4d0f Mon Sep 17 00:00:00 2001 From: Nicolas Petton Date: Wed, 11 Nov 2015 17:53:41 +0100 Subject: Rename obarray-foreach to obarray-map * lisp/obarray.el (obarray-map): New name. * test/automated/obarray-tests.el: Update the corresponding tests. --- lisp/obarray.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/obarray.el') diff --git a/lisp/obarray.el b/lisp/obarray.el index fb7a333b8b5..0e57381a9c5 100644 --- a/lisp/obarray.el +++ b/lisp/obarray.el @@ -57,7 +57,7 @@ Creates and adds the symbol if doesn't exist." Return t on success, nil otherwise." (unintern name obarray)) -(defun obarray-foreach (fn obarray) +(defun obarray-map (fn obarray) "Call function FN on every symbol in OBARRAY and return nil." (mapatoms fn obarray)) -- cgit v1.2.3