From ade62f5b50ceac56bec6f5b3b2cc961b9e9aa4a4 Mon Sep 17 00:00:00 2001 From: coelhotopetudo Date: Thu, 9 Feb 2017 13:19:42 -0200 Subject: [PATCH] Brief explanation about ' (quote) (#2449) --- elisp.html.markdown | 2 ++ 1 file changed, 2 insertions(+) diff --git a/elisp.html.markdown b/elisp.html.markdown index c88d97f0..16a0311c 100644 --- a/elisp.html.markdown +++ b/elisp.html.markdown @@ -225,6 +225,8 @@ filename: learn-emacs-lisp.el ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;; Let's store a list of names: +;; If you want to create a literal list of data, use ' to stop it from +;; being evaluated - literally, "quote" the data. (setq list-of-names '("Sarah" "Chloe" "Mathilde")) ;; Get the first element of this list with `car':