[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 8c3e10b5756 2/2: ; Fix last change
From: |
Eli Zaretskii |
Subject: |
master 8c3e10b5756 2/2: ; Fix last change |
Date: |
Sat, 7 Dec 2024 07:44:01 -0500 (EST) |
branch: master
commit 8c3e10b5756a72d5d17f8166c0241f933305abe9
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>
; Fix last change
* lisp/progmodes/flymake-cc.el (flymake-cc-command): Fix doc
string and customization tags. (Bug#74378)
---
lisp/progmodes/flymake-cc.el | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/lisp/progmodes/flymake-cc.el b/lisp/progmodes/flymake-cc.el
index 79557c9fbe4..0cf6b68012c 100644
--- a/lisp/progmodes/flymake-cc.el
+++ b/lisp/progmodes/flymake-cc.el
@@ -30,16 +30,17 @@
(defcustom flymake-cc-command #'flymake-cc-use-special-make-target
"Command used by the `flymake-cc' backend.
-A list of strings, or a function that produces one such list when called
-with no arguments in the buffer where the variable `flymake-mode' is
-active.
+The value should be a list of strings, or a function that produces
+such a list when called with no arguments in the buffer where `flymake-mode'
+is active. The list of strings should be suitable for the `:command'
+keyword of `make-process'.
The command should invoke a GNU-style compiler that checks the
syntax of a (Obj)C(++) program passed to it via its standard
input and prints the result on its standard output."
:type '(choice
- (function :tag "Function")
- (repeat :tag "Command(s)" string))
+ (function :tag "Function to produce compilation command")
+ (repeat :tag "Compilation command and its options" string))
:version "27.1"
:group 'flymake-cc)