Questions tagged «quote»

3
如何知道何时或何时不使用变量名前的单引号?
我有以下内容: (setq some-variable "less") 我很困惑为什么必须将单引号与一起使用,boundp而不将其与一起使用bound-and-true-p。 范例1: (when (boundp 'some-variable) (message "some-variable is %s" some-variable)) 结果: “多变少” 示例2a: (when (bound-and-true-p some-variable) ;; Note that using single-quote causes error (message "some-variable is %s" some-variable)) 结果: “多变少” 示例2b: (when (bound-and-true-p 'some-variable) ;; Note that using single-quote causes error (message "some-variable is %s" some-variable)) …
31 elisp  quote 


1
符号前面的'和#'有什么区别?
我对Emacs有点陌生。当查看某些配置时,我发现“ add-hook”中有两种类型的命令。 (add-hook 'LaTeX-mode-hook #'LaTeX-math-mode) 和 (add-hook 'LaTeX-mode-hook 'LaTeX-math-mode) 这让我很困惑了很长时间,而且我不知道如何在Google中搜索“#'” ... 谢谢。
22 elisp  hooks  functions  quote 


2
什么时候应该使用尖引号?
我看到其他人的eLisp代码中使用了尖锐的引号,而我自己也使用了引号,但是我不清楚它们什么时候合适,什么时候不合适。 谁能确切说明何时应使用尖引号以及何时应使用普通单引号?
10 elisp  functions  quote  style 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.