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)) …