summaryrefslogtreecommitdiff
path: root/lisp/nxml
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2015-09-24 08:54:39 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2015-09-24 08:54:39 -0400
commit8f88db14946f46a95603dfaa2a425d64b01fbb53 (patch)
tree88d3f5ad8b6dd0fed1eae4ade62fd60e2e42f58d /lisp/nxml
parent8c909d75128b5bf92b090d34adbe07ed882ecd74 (diff)
downloademacs-8f88db14946f46a95603dfaa2a425d64b01fbb53.tar.gz
Fix recent bootstrap problems
* src/syntax.c (parse_sexp_propertize): Fix last fix. * lisp/nxml/nxml-mode.el (nxml-comment-quote-nested): Fix paren typo. * lisp/emacs-lisp/lisp-mode.el: Require cl-lib for cl-progv.
Diffstat (limited to 'lisp/nxml')
-rw-r--r--lisp/nxml/nxml-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/nxml/nxml-mode.el b/lisp/nxml/nxml-mode.el
index 8b0dc9278c5..0e2fca349a5 100644
--- a/lisp/nxml/nxml-mode.el
+++ b/lisp/nxml/nxml-mode.el
@@ -1351,9 +1351,9 @@ of the inserted start-tag or nil if none was inserted."
start-tag-indent)))))
inserted-start-tag-pos))
-(defun nxml-comment-quote-nested (cs ce unp)
+(defun nxml-comment-quote-nested (_cs _ce unp)
"Quote nested comments in buffer.
-See `comment-quote-nested-function' for more information.")
+See `comment-quote-nested-function' for more information."
(goto-char (point-min))
(save-match-data
(while (re-search-forward "-[\\]*-" nil t)