diff options
author | coelhotopetudo <coelhotopetudo@gmail.com> | 2017-02-09 13:19:42 -0200 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2017-02-09 16:19:42 +0100 |
commit | ade62f5b50ceac56bec6f5b3b2cc961b9e9aa4a4 (patch) | |
tree | 37d4177b9479907fb83cd951c007d7ee1e8ee8e7 /elisp.html.markdown | |
parent | 7f0fff0adf38fb47b36da4a8c319c6c9c28c546d (diff) |
Brief explanation about ' (quote) (#2449)
Diffstat (limited to 'elisp.html.markdown')
-rw-r--r-- | elisp.html.markdown | 2 |
1 files changed, 2 insertions, 0 deletions
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': |