diff --git a/init.d/text/web.el b/init.d/text/web.el index 0253659..6bde2b3 100644 --- a/init.d/text/web.el +++ b/init.d/text/web.el @@ -17,9 +17,10 @@ (use-package web-mode :custom (web-mode-markup-indent-offset 2) ; Default indentation level. - :config ((defun my/html-surround-with-tag (beg end) + :config (progn + (defun my/html-surround-with-tag (beg end) "Surround region with HTML tag." - (interactive "*r") + (interactive "r") (if (region-active-p) (let ((tag (completing-read "Tag: " '("blockquote" "em" "strong"))))