aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2018-03-26 16:12:51 -0400
committerGlenn Morris2018-03-26 16:12:51 -0400
commit86960383cf8bd709e08aac483a7f60be2f8c2dcf (patch)
tree7d17941e097437e785b7de3dcd39a13dc84252c4
parent930f7b10b3ee7cff1cbae56a5d38badedb69d6ff (diff)
downloademacs-86960383cf8bd709e08aac483a7f60be2f8c2dcf.tar.gz
emacs-86960383cf8bd709e08aac483a7f60be2f8c2dcf.zip
* lisp/htmlfontify.el (hfy-begin-span-handler): Doc fix.
-rw-r--r--lisp/emacs-lisp/bytecomp.el4
-rw-r--r--lisp/htmlfontify.el4
2 files changed, 4 insertions, 4 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) ...))"
4173 ;; to be non-nil for generating tags for all cases. Since 4173 ;; to be non-nil for generating tags for all cases. Since
4174 ;; `byte-compile-depth' will increase by at most 1 after compiling 4174 ;; `byte-compile-depth' will increase by at most 1 after compiling
4175 ;; all of the clause (which is further enforced by cl-assert below) 4175 ;; all of the clause (which is further enforced by cl-assert below)
4176 ;; it should be safe to preserve it's value. 4176 ;; it should be safe to preserve its value.
4177 (let ((byte-compile-depth byte-compile-depth)) 4177 (let ((byte-compile-depth byte-compile-depth))
4178 (byte-compile-goto 'byte-goto default-tag)) 4178 (byte-compile-goto 'byte-goto default-tag))
4179 4179
@@ -4191,7 +4191,7 @@ Return a list of the form ((TEST . VAR) ((VALUE BODY) ...))"
4191 (let ((byte-compile-depth byte-compile-depth) 4191 (let ((byte-compile-depth byte-compile-depth)
4192 (init-depth byte-compile-depth)) 4192 (init-depth byte-compile-depth))
4193 ;; Since `byte-compile-body' might increase `byte-compile-depth' 4193 ;; Since `byte-compile-body' might increase `byte-compile-depth'
4194 ;; by 1, not preserving it's value will cause it to potentially 4194 ;; by 1, not preserving its value will cause it to potentially
4195 ;; increase by one for every clause body compiled, causing 4195 ;; increase by one for every clause body compiled, causing
4196 ;; depth/tag conflicts or violating asserts down the road. 4196 ;; depth/tag conflicts or violating asserts down the road.
4197 ;; To make sure `byte-compile-body' itself doesn't violate this, 4197 ;; To make sure `byte-compile-body' itself doesn't violate this,
diff --git a/lisp/htmlfontify.el b/lisp/htmlfontify.el
index dfa6bde2972..6ddbbc99f91 100644
--- a/lisp/htmlfontify.el
+++ b/lisp/htmlfontify.el
@@ -1623,8 +1623,8 @@ invisible text.
1623 1623
1624TEXT-BLOCK is a string that identifies a single chunk of visible 1624TEXT-BLOCK is a string that identifies a single chunk of visible
1625or invisible text of which the current position is a part. For 1625or invisible text of which the current position is a part. For
1626visible portions, it's value is \"nil\". For invisible portions, 1626visible portions, its value is \"nil\". For invisible portions,
1627it's value is computed as part of `hfy-invisible-name'. 1627its value is computed as part of `hfy-invisible-name'.
1628 1628
1629TEXT-ID marks a unique position within a block. It is set to 1629TEXT-ID marks a unique position within a block. It is set to
1630value of `point' at the current buffer position. 1630value of `point' at the current buffer position.