|
ze
|

Files | |
| file | status.c |
| Status bar message helpers. | |
Functions | |
| void | editorSetStatusMessage (const char *fmt,...) |
| Set the transient status message using printf-style formatting. | |
| void | scmEditorSetStatusMessage (SCM message) |
| Set the status message from a Scheme string. | |
| void editorSetStatusMessage | ( | const char * | fmt, |
| ... | |||
| ) |
Set the transient status message using printf-style formatting.
Formats into E.statusmsg and records the current time for display in the message bar.
| [in] | fmt | printf-style format string. |
| [in] | ... | Format arguments. |
| void scmEditorSetStatusMessage | ( | SCM | message | ) |
Set the status message from a Scheme string.
Converts message to a C string, copies into E.statusmsg (clamped to buffer size), and updates the timestamp.
Ownership: the temporary C string is freed before return; message remains owned by Guile.
| [in] | message | Scheme string to display. |