emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/paredit 27a4b80 020/224: Fix indentation in definition of


From: ELPA Syncer
Subject: [nongnu] elpa/paredit 27a4b80 020/224: Fix indentation in definition of `paredit-initialize-comment-dwim'.
Date: Sat, 7 Aug 2021 09:22:09 -0400 (EDT)

branch: elpa/paredit
commit 27a4b80114ab3d6bb0c0e05d60a2fda5e2f66f99
Author: Taylor R Campbell <campbell@mumble.net>
Commit: Taylor R Campbell <campbell@mumble.net>

    Fix indentation in definition of `paredit-initialize-comment-dwim'.
    
    darcs-hash:20080928142326-00fcc-4ba83303f54bdc9c0c27807e0a8e2f64e4a1b86a
---
 paredit.el | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/paredit.el b/paredit.el
index 724f4df..284d8fe 100644
--- a/paredit.el
+++ b/paredit.el
@@ -1025,16 +1025,16 @@ At the top level, where indentation is calculated to be 
at column 0,
   (if (not (fboundp 'comment-or-uncomment-region))
       (defalias 'comment-or-uncomment-region
         (lambda (beginning end &optional argument)
-         (interactive "*r\nP")
-         (funcall (if (save-excursion (goto-char beginning)
-                                      ;; This is not defined until `newcomment'
-                                      ;; is loaded.  Using `funcall' with a
-                                      ;; symbol shuts up the compiler.
-                                      (funcall 'comment-forward (point-max))
-                                      (<= end (point)))
-                      'uncomment-region
-                      'comment-region)
-                  beginning end argument))))
+          (interactive "*r\nP")
+          (funcall (if (save-excursion (goto-char beginning)
+                                       ;; This is undefined until `newcomment'
+                                       ;; is loaded.  Using `funcall' with a
+                                       ;; symbol shuts up the compiler.
+                                       (funcall 'comment-forward (point-max))
+                                       (<= end (point)))
+                       'uncomment-region
+                     'comment-region)
+                   beginning end argument))))
   (defalias 'paredit-initialize-comment-dwim 'comment-normalize-vars)
   (comment-normalize-vars))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]