diff options
author | Sean Nam <namsangwoo1@gmail.com> | 2017-02-09 17:11:10 -0800 |
---|---|---|
committer | Sean Nam <namsangwoo1@gmail.com> | 2017-02-09 17:11:10 -0800 |
commit | 13663f3726c39639b23615b9f963ca4b30650408 (patch) | |
tree | 9b0977479e908ab0d3c4fbcb3b9cc471a557beb0 /elisp.html.markdown | |
parent | 5254804c1ccf51fb3c3c500a7095dd8408371837 (diff) | |
parent | 45de0120d641cfaac0bb60b25a24782ec106e719 (diff) |
Merge branch 'master' of github.com:adambard/learnxinyminutes-docs
Pulling from master to work on Java[en] inputs
Diffstat (limited to 'elisp.html.markdown')
-rw-r--r-- | elisp.html.markdown | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/elisp.html.markdown b/elisp.html.markdown index c88d97f0..bda5f00f 100644 --- a/elisp.html.markdown +++ b/elisp.html.markdown @@ -1,7 +1,7 @@ --- language: elisp contributors: - - ["Bastien Guerry", "http://bzg.fr"] + - ["Bastien Guerry", "https://bzg.fr"] - ["Saurabh Sandav", "http://github.com/SaurabhSandav"] filename: learn-emacs-lisp.el --- @@ -9,7 +9,7 @@ filename: learn-emacs-lisp.el ```scheme ;; This gives an introduction to Emacs Lisp in 15 minutes (v0.2d) ;; -;; Author: Bastien / @bzg2 / http://bzg.fr +;; Author: Bastien / @bzg2 / https://bzg.fr ;; ;; First make sure you read this text by Peter Norvig: ;; http://norvig.com/21-days.html @@ -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': |