| 84 | } |
| 85 | |
| 86 | void gjs_console_write_repl_history(const char* path) { |
| 87 | if (path) { |
| 88 | int err = write_history(path); |
| 89 | if (err != 0) |
| 90 | g_warning("Could not persist history to defined file %s: %s", path, |
| 91 | g_strerror(err)); |
| 92 | } |
| 93 | } |
| 94 | #endif |
no outgoing calls
no test coverage detected