diff options
author | Glenn Morris <rgm@gnu.org> | 2018-03-26 16:12:51 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2018-03-26 16:12:51 -0400 |
commit | 86960383cf8bd709e08aac483a7f60be2f8c2dcf (patch) | |
tree | 7d17941e097437e785b7de3dcd39a13dc84252c4 /lisp/emacs-lisp | |
parent | 930f7b10b3ee7cff1cbae56a5d38badedb69d6ff (diff) | |
download | emacs-86960383cf8bd709e08aac483a7f60be2f8c2dcf.tar.gz emacs-86960383cf8bd709e08aac483a7f60be2f8c2dcf.tar.bz2 emacs-86960383cf8bd709e08aac483a7f60be2f8c2dcf.zip |
* lisp/htmlfontify.el (hfy-begin-span-handler): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index c179ffcafd6..d1119e10903 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -4173,7 +4173,7 @@ Return a list of the form ((TEST . VAR) ((VALUE BODY) ...))" ;; to be non-nil for generating tags for all cases. Since ;; `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. + ;; it should be safe to preserve its value. (let ((byte-compile-depth byte-compile-depth)) (byte-compile-goto 'byte-goto default-tag)) @@ -4191,7 +4191,7 @@ Return a list of the form ((TEST . VAR) ((VALUE BODY) ...))" (let ((byte-compile-depth byte-compile-depth) (init-depth byte-compile-depth)) ;; Since `byte-compile-body' might increase `byte-compile-depth' - ;; by 1, not preserving it's value will cause it to potentially + ;; by 1, not preserving its value will cause it to potentially ;; increase by one for every clause body compiled, causing ;; depth/tag conflicts or violating asserts down the road. ;; To make sure `byte-compile-body' itself doesn't violate this, |