summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2017-02-16 09:17:45 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2017-02-16 09:18:21 -0800
commitcb70725584a754a491ddad82c42278f17c714a2f (patch)
treeb5ad6679f60932e516cb4769d878f37ec9814780 /lisp/emacs-lisp
parent0b544b676473dedf34c6cb6a3315bec1f42d7162 (diff)
downloademacs-cb70725584a754a491ddad82c42278f17c714a2f.tar.gz
emacs-cb70725584a754a491ddad82c42278f17c714a2f.tar.bz2
emacs-cb70725584a754a491ddad82c42278f17c714a2f.zip
; Spelling, punctuation and minor wording fixes
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/byte-opt.el2
-rw-r--r--lisp/emacs-lisp/bytecomp.el6
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/byte-opt.el b/lisp/emacs-lisp/byte-opt.el
index f3cc3d5992e..004f2e28653 100644
--- a/lisp/emacs-lisp/byte-opt.el
+++ b/lisp/emacs-lisp/byte-opt.el
@@ -1421,7 +1421,7 @@
when (and (listp el) ;; make sure we're at the correct op
(eq (nth 1 el) 'byte-constant)
(eq (nth 2 el) orig-table))
- ;; jump tables are never resused, so we do this exactly
+ ;; Jump tables are never reused, so do this exactly
;; once.
do (setf (nth 2 el) last-constant) and return nil))))
;; lap = ( [ (pc . (op . arg)) ]* )
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index e96ba0b6edd..25513bd0248 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -912,7 +912,7 @@ CONST2 may be evaluated multiple times."
(dolist (bytes-tail patchlist)
(setq pc (caar bytes-tail)) ; Pick PC from goto's tag.
;; Splits PC's value into 2 bytes. The jump address is
- ;; "reconstructued" by the `FETCH2' macro in `bytecode.c'.
+ ;; "reconstructed" by the `FETCH2' macro in `bytecode.c'.
(setcar (cdr bytes-tail) (logand pc 255))
(setcar bytes-tail (lsh pc -8))
;; FIXME: Replace this by some workaround.
@@ -4085,7 +4085,7 @@ Return a list of the form ((TEST . VAR) ((VALUE BODY) ...))"
;; varref var
;; constant #s(hash-table purecopy t data (val1 (TAG1) val2 (TAG2)))
;; switch
- ;; goto DEFAUT-TAG
+ ;; goto DEFAULT-TAG
;; TAG1
;; <clause body>
;; goto DONETAG
@@ -4103,7 +4103,7 @@ Return a list of the form ((TEST . VAR) ((VALUE BODY) ...))"
;; When the opcode argument is `byte-goto', `byte-compile-goto' sets
;; `byte-compile-depth' to `nil'. However, we need `byte-compile-depth'
;; to be non-nil for generating tags for all cases. Since
- ;; `byte-compile-depth' will increase by atmost 1 after compiling
+ ;; `byte-compile-depth' will increase by at most 1 after compiling
;; all of the clause (which is further enforced by cl-assert below)
;; it should be safe to preserve it's value.
(let ((byte-compile-depth byte-compile-depth))