]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/editorconfing.el: Cosmetic ELisp style changes
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 18 Jun 2024 03:18:03 +0000 (23:18 -0400)
committerEshel Yaron <me@eshelyaron.com>
Fri, 21 Jun 2024 18:59:49 +0000 (20:59 +0200)
Prefer #' to quote function names.
Remove redundant :groups.
Silence compiler warnings.

* lisp/editorconfig.el: Remove post-trailer.
The var is already set via `.dir-locals.el` anyway.
(editorconfig-call-get-properties-function): Use condition-case-unless-debug.

(cherry picked from commit 812831ee2f754277050bc15053490119d13ef958)

lisp/editorconfig-core.el
lisp/editorconfig-fnmatch.el
lisp/editorconfig-tools.el
lisp/editorconfig.el

index 2f9b374e0ed6852c7d3d9f1925e594d1c387f057..bdd5f49aa6eacd6364743286c65fb70666566b8c 100644 (file)
@@ -85,7 +85,7 @@ RESULT is used internally and normally should not be used."
         (parent (file-name-directory (directory-file-name dir))))
     (if (or (string= parent dir)
             (and handle (editorconfig-core-handle-root-p handle)))
-        (cl-remove-if-not 'identity (cons handle result))
+        (cl-remove-if-not #'identity (cons handle result))
       (editorconfig-core--get-handles parent
                                       confname
                                       (cons handle result)))))
index 85eab7abc355af10be40760b0614e0bd9c1eafab..4f6feb0f8934efee82afdc1553b7c7e7433fd50c 100644 (file)
@@ -234,7 +234,7 @@ translation is found for PATTERN."
                            (number-end (string-to-number (match-string 2
                                                                        pattern-sub))))
                        (setq result `(,@result ,(concat "\\(?:"
-                                                        (mapconcat 'number-to-string
+                                                        (mapconcat #'number-to-string
                                                                    (cl-loop for i from number-start to number-end
                                                                             collect i)
                                                                    "\\|")
index 7364a7135c31af90ae144411f41d5820a084b831..ebc6a45d7bd21293229dd89140d8e0db9c057219 100644 (file)
@@ -112,7 +112,7 @@ any of regexps in `editorconfig-exclude-regexps'."
     nil))
 ;;;###autoload
 (defalias 'describe-editorconfig-properties
-  'editorconfig-display-current-properties)
+  #'editorconfig-display-current-properties)
 
 
 (provide 'editorconfig-tools)
index cba4eea319c02a42b430ce8699d8fdb915725804..df707a6644a83a6eb5fb629b579c1fb09da447e7 100644 (file)
@@ -92,8 +92,7 @@ show line numbers on the left:
 
 This hook will be run even when there are no matching sections in
 \".editorconfig\", or no \".editorconfig\" file was found at all."
-  :type 'hook
-  :group 'editorconfig)
+  :type 'hook)
 
 (defcustom editorconfig-hack-properties-functions ()
   "A list of function to alter property values before applying them.
@@ -115,8 +114,7 @@ overwrite \"indent_style\" property when current `major-mode' is a
 
 This hook will be run even when there are no matching sections in
 \".editorconfig\", or no \".editorconfig\" file was found at all."
-  :type 'hook
-  :group 'editorconfig)
+  :type 'hook)
 (make-obsolete-variable 'editorconfig-hack-properties-functions
                         "Using `editorconfig-after-apply-functions' instead is recommended,
     because since 2021/08/30 (v0.9.0) this variable cannot support all properties:
@@ -196,8 +194,7 @@ This hook will be run even when there are no matching sections in
 
 If set, enable that mode when `trim_trailing_whitespace` is set to true.
 Otherwise, use `delete-trailing-whitespace'."
-  :type 'symbol
-  :group 'editorconfig)
+  :type 'symbol)
 
 (defvar editorconfig-properties-hash nil
   "Hash object of EditorConfig properties that was enabled for current buffer.
@@ -378,7 +375,7 @@ This function also removes `unset' properties and calls
       (setq filename (expand-file-name filename))
     (editorconfig-error "Invalid argument: %S" filename))
   (let ((props nil))
-    (condition-case err
+    (condition-case-unless-debug err
         (setq props (editorconfig-core-get-properties-hash filename))
       (error
        (editorconfig-error "Error from editorconfig-core-get-properties-hash: %S"
@@ -585,7 +582,3 @@ version in the echo area and the messages buffer."
 
 (provide 'editorconfig)
 ;;; editorconfig.el ends here
-
-;; Local Variables:
-;; sentence-end-double-space: t
-;; End: