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 …