summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/byte-opt.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2022-07-14 11:55:52 +0200
committerStefan Kangas <stefan@marxist.se>2022-07-14 12:13:31 +0200
commit2a05479c221d4a13b15ed731e4eb1c0de99e97ed (patch)
tree2b28f1c72560050896e5461e068316fc59bbd4bd /lisp/emacs-lisp/byte-opt.el
parentddecd864cfeced3e8a01d1b58ef8dcffd177c0f8 (diff)
downloademacs-2a05479c221d4a13b15ed731e4eb1c0de99e97ed.tar.gz
; Fix typos: prefer American spelling
Diffstat (limited to 'lisp/emacs-lisp/byte-opt.el')
-rw-r--r--lisp/emacs-lisp/byte-opt.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/byte-opt.el b/lisp/emacs-lisp/byte-opt.el
index d8a96b3f020..a24a5044562 100644
--- a/lisp/emacs-lisp/byte-opt.el
+++ b/lisp/emacs-lisp/byte-opt.el
@@ -425,7 +425,7 @@ for speeding up processing.")
;; `unwind-protect' is a special form which here takes the shape
;; (unwind-protect EXPR :fun-body UNWIND-FUN).
;; We can treat it as if it were a plain function at this point,
- ;; although there are specific optimisations possible.
+ ;; although there are specific optimizations possible.
;; In particular, the return value of UNWIND-FUN is never used
;; so its body should really be compiled for-effect, but we
;; don't do that right now.