branch: externals/urgrep commit 96e8dba46d735947f5c9f6177176fd7e03f383ae Author: Jim Porter <jporterb...@gmail.com> Commit: Jim Porter <jporterb...@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."