In article <15d554aa-7f1c-45e5-a26f-017bd6258140@d32g2000yqe.googlegroups.com>, Nordlöw wrote: > I have long wondered about the meaning of the hash character # in > emacs lisp. > > Here is an example taken from hl-line.el > (add-hook 'change-major-mode-hook #'hl-line-unhighlight nil t) > > What effect does it have? > > /Nordlöw #' is to 'function' as ' is to 'quote', i.e. 'foo ==> (quote foo) #'foo ==> (function foo) -- Barry Margolin, barmar@alum.mit.edu Arlington, MA *** PLEASE post questions in newsgroups, not directly to me *** *** PLEASE don't copy me on replies, I'll read them in the group ***