mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-02 07:15:31 -04:00
Merge branch 'no-conf-found-is-not-an-error'
This commit is contained in:
commit
7ada4c0ab4
2 changed files with 4 additions and 1 deletions
|
|
@ -108,6 +108,9 @@
|
||||||
* Writing a sixel on top of another sixel no longer erases the first
|
* Writing a sixel on top of another sixel no longer erases the first
|
||||||
sixel, but the two are instead blended
|
sixel, but the two are instead blended
|
||||||
(https://codeberg.org/dnkl/foot/issues/562).
|
(https://codeberg.org/dnkl/foot/issues/562).
|
||||||
|
* Running foot without a configuration file is no longer an error; it
|
||||||
|
has been demoted to a warning, and is no longer presented as a
|
||||||
|
notification in the terminal window, but only logged on stderr.
|
||||||
|
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
|
|
||||||
2
config.c
2
config.c
|
|
@ -2662,7 +2662,7 @@ config_load(struct config *conf, const char *conf_path,
|
||||||
} else {
|
} else {
|
||||||
conf_file = open_config();
|
conf_file = open_config();
|
||||||
if (conf_file.fd < 0) {
|
if (conf_file.fd < 0) {
|
||||||
LOG_AND_NOTIFY_ERR("no configuration found, using defaults");
|
LOG_WARN("no configuration found, using defaults");
|
||||||
ret = !errors_are_fatal;
|
ret = !errors_are_fatal;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue