aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/svg.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/svg.el b/lisp/svg.el
index 241385fa91f..42619ed3519 100644
--- a/lisp/svg.el
+++ b/lisp/svg.el
@@ -167,7 +167,7 @@ otherwise. IMAGE-TYPE should be a MIME image type, like
167 (goto-char (point-min)) 167 (goto-char (point-min))
168 (while (not (eobp)) 168 (while (not (eobp))
169 (let ((char (following-char))) 169 (let ((char (following-char)))
170 (if (<= char 128) 170 (if (< char 128)
171 (forward-char 1) 171 (forward-char 1)
172 (delete-char 1) 172 (delete-char 1)
173 (insert "&#" (format "%d" char) ";")))) 173 (insert "&#" (format "%d" char) ";"))))