Package: glib
Function g-option-context-summary
Lambda Listg-option-context-summary (context) SyntaxArgumentsDetails The function g-option-context-summary returns the summary. The function (setf g-option-context-summary) adds a string to be displayed in --help output before the list of options. This is
typically a summary of the program functionality. Note that the summary is translated. See the functions g-option-context-set-translate-func and g-option-context-set-translation-domain. Example(setq context (g-option-context-new "A short description.")) => #.(SB-SYS:INT-SAP #X561C3BDDC430) (setf (g-option-context-summary context) "This is the summary.") => "This is the summary." (g-option-context-help context nil) => "Aufruf: sbcl [OPTION …] A short description. | See also |
2021-8-11