branch: elpa/casual
commit 3e794f4c848606cb38d72ee66c9778c0ce7d59e1
Author: Charles Choi <[email protected]>
Commit: Charles Choi <[email protected]>

    Address MELPA review comments
    
    - Fix lint warnings.
---
 lisp/casual-editkit-utils.el | 4 ++--
 lisp/casual-re-builder.el    | 3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/lisp/casual-editkit-utils.el b/lisp/casual-editkit-utils.el
index 4cb1286c35..ca5e40e362 100644
--- a/lisp/casual-editkit-utils.el
+++ b/lisp/casual-editkit-utils.el
@@ -885,8 +885,8 @@ with no space between."
              (end (region-end))
              (content (string-trim (buffer-substring start end))))
         (delete-region start end)
-        (insert (concat open-quote content close-quote)))
-    (insert (concat open-quote close-quote))))
+        (insert open-quote content close-quote))
+    (insert open-quote close-quote)))
 
 (defun casual-editkit-smart-single-quote-dwim ()
   "Insert or enclose a region with smart single quotes."
diff --git a/lisp/casual-re-builder.el b/lisp/casual-re-builder.el
index 41c53bd178..5e1eb5c7bd 100644
--- a/lisp/casual-re-builder.el
+++ b/lisp/casual-re-builder.el
@@ -20,7 +20,8 @@
 
 ;;; Commentary:
 
-;; Casual RE-Builder is an opinionated Transient-based porcelain for the Emacs 
regular expression editor.
+;; Casual RE-Builder is an opinionated Transient-based porcelain for the Emacs
+;; regular expression editor.
 
 ;; INSTALLATION
 ;; (require 'casual-re-builder) ;; optional

Reply via email to