What does this do?
(add-hook 'compilation-mode-hook #'my-setup-compile-mode)
…and is it different than
(add-hook 'compilation-mode-hook 'my-setup-compile-mode)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is no difference:
yields
tThe
#can be used in front of alambdaexpression indicating to the byte-compiler that the following expression can be byte compiled, see the docs for Anonymous Functions. But there’s nothing to compile in the case of a symbol.In general, it is used in the printed representation along with the left angle bracket (<) to indicate that the object printed is a description (but cannot be read). For example:
It is also used in constructs by the reader to represent circular structures. See the docs for Read Syntax for Circular Objects.
And then you have its use for denoting the base for integers, e.g.
#x2c -> 44.Plus more I’m sure.