Path: utzoo!utgpu!watmath!uunet!tut.cis.ohio-state.edu!HARVARD.HARVARD.EDU!kendall%saber From: kendall%saber@HARVARD.HARVARD.EDU Newsgroups: gnu.emacs.bug Subject: Redundant function in cl.el Message-ID: <8905011633.AA03889@life.ai.mit.edu> Date: 1 May 89 16:34:52 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 9 `member' in cl.el is essentially the same function as the builtin `memq'. Why not just fset the former to the latter? It's much faster. Differences: (1) memq on a dotted list may crash your Emacs, while member accepts dotted lists. Maybe fix memq not to have this problem. (2) member uses eql, while memq uses eq. But these are the same function. --Sam Kendall