Package: glib
Function glib:option-context-summary
Lambda Listglib:option-context-summary (context) SyntaxArgumentsDetails              The g:option-context-summary function returns the summary.    The (setf g:option-context-summary) function 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 g:option-context-set-translate-func and g:option-context-set-translation-domain functions. Examples(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 | 
2025-05-22