From 01fa4266c30d7cd4e02fd76daab9af29a3632ac1 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Thu, 20 Mar 2025 19:21:08 +0100 Subject: [PATCH] Make compilation-filter-hook into a defcustom * lisp/progmodes/compile.el (compilation-filter-hook): Make variable into a defcustom. (cherry picked from commit 40a17ce3b238ea0223d1b3e1c72f48352e1ca63d) --- lisp/progmodes/compile.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index abe53655fad..7c3bde6a188 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -85,14 +85,18 @@ Similarly, to remove a prefix \"bar/\", use: (string :tag "Replace matched filename with")))) :version "27.1") -(defvar compilation-filter-hook nil +(defcustom compilation-filter-hook nil "Hook run after `compilation-filter' has inserted a string into the buffer. It is called with the variable `compilation-filter-start' bound to the position of the start of the inserted text, and point at its end. If Emacs lacks asynchronous process support, this hook is run -after `call-process' inserts the grep output into the buffer.") +after `call-process' inserts the grep output into the buffer." + :type 'hook + :options '(ansi-color-compilation-filter + ansi-osc-compilation-filter) + :version "31.1") (defvar compilation-filter-start nil "Position of the start of the text inserted by `compilation-filter'. -- 2.39.5