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

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

[elpa] externals/urgrep 96e8dba46d 1/2: Use #' for functions


From: ELPA Syncer
Subject: [elpa] externals/urgrep 96e8dba46d 1/2: Use #' for functions
Date: Tue, 20 Jun 2023 01:00:20 -0400 (EDT)

branch: externals/urgrep
commit 96e8dba46d735947f5c9f6177176fd7e03f383ae
Author: Jim Porter <jporterbugs@gmail.com>
Commit: Jim Porter <jporterbugs@gmail.com>

    Use #' for functions
---
 urgrep.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/urgrep.el b/urgrep.el
index 5857375000..f6101a6f6e 100644
--- a/urgrep.el
+++ b/urgrep.el
@@ -883,13 +883,13 @@ This function is called from `compilation-filter-hook'."
 (define-compilation-mode urgrep-mode "Urgrep"
   "A compilation mode for various grep-like tools."
   (setq-local tool-bar-map urgrep-mode-tool-bar-map
-              compilation-process-setup-function 'urgrep-process-setup
-              compilation-error-face 'urgrep-hit
+              compilation-process-setup-function #'urgrep-process-setup
+              compilation-error-face #'urgrep-hit
               compilation-error-regexp-alist urgrep-regexp-alist
               compilation-mode-line-errors urgrep-mode-line-matches
               compilation-disable-input t
               compilation-error-screen-columns nil)
-  (add-hook 'compilation-filter-hook 'urgrep-filter nil t))
+  (add-hook 'compilation-filter-hook #'urgrep-filter nil t))
 
 (defun urgrep--hide-abbreviations (command)
   "If `urgrep-abbreviate-command' is non-nil, hide abbreviations in COMMAND."



reply via email to

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