diff options
author | Bastien Guerry <bzg@altern.org> | 2013-07-29 13:29:11 +0200 |
---|---|---|
committer | Bastien Guerry <bzg@altern.org> | 2013-07-29 13:29:11 +0200 |
commit | 6bb7de9295dad79811425874537f2d65c5c46aae (patch) | |
tree | 2fb67df22a498acaf06d797ea33c75283ef014ed | |
parent | 4da8d6dd7b4c51711419a3ab75db6da8573d6963 (diff) |
Fix more typos.
-rw-r--r-- | elisp.html.markdown | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/elisp.html.markdown b/elisp.html.markdown index d62a0a49..740d44aa 100644 --- a/elisp.html.markdown +++ b/elisp.html.markdown @@ -6,7 +6,9 @@ filename: learn-emacs-lisp.el --- ```elisp -;; This gives an introduction to Emacs Lisp in 15 minutes (v0.2a) +;; This gives an introduction to Emacs Lisp in 15 minutes (v0.2d) +;; +;; Author: Bastien / @bzg2 / http://bzg.fr ;; ;; First make sure you read this text by Peter Norvig: ;; http://norvig.com/21-days.html @@ -127,7 +129,7 @@ filename: learn-emacs-lisp.el (switch-to-buffer-other-window "*test*") ;; `C-xC-e' -;: => [screen has two windows and cursor is in the *test* buffer] +;; => [screen has two windows and cursor is in the *test* buffer] ;; Mouse over the top window and left-click to go back. Or you can ;; use `C-xo' (i.e. hold down control-x and hit o) to go to the other @@ -138,7 +140,7 @@ filename: learn-emacs-lisp.el (switch-to-buffer-other-window "*test*") (hello "you")) ;; `C-xC-e' -;: => [The screen has two windows and cursor is in the *test* buffer] +;; => [The screen has two windows and cursor is in the *test* buffer] ;; Now if you don't mind, I'll stop asking you to hit `C-xC-e': do it ;; for every sexp that follows. @@ -346,4 +348,6 @@ filename: learn-emacs-lisp.el ;; - Kevin Montuori ;; - Arne Babenhauserheide ;; - Alan Schmitt +;; - LinXitoW +;; - Aaron Meurer ``` |