2
आदेश है कि प्रारूप (prettify) एलिसिप कोड
मान लीजिए कि मेरे पास एक फ़ंक्शन है जो निम्नलिखित की तरह दिखता है (जैसा कि अक्सर होता है जब क्विक आउटपुट प्रिंट करते हैं)। (defun my-example-function () (let ((a (do-something)) (b (do-something))) (setq someone me) (with-current-buffer b (do-that (or this (and that those))) (format "%s" a)))) मैं एक ऐसी …
21
elisp
formatting