diff options
author | 2017-09-04 22:58:54 +0300 | |
---|---|---|
committer | 2017-09-04 22:58:54 +0300 | |
commit | b3cf168b1a928e092508f676f6be4664d971e33c (patch) | |
tree | 198c4036eb100c338b86ed9dd330439a2494f449 /src/controller.cpp | |
parent | 7f06233b6551c505b0e4ff2fef93821eb101fd51 (diff) | |
download | newsboat-b3cf168b1a928e092508f676f6be4664d971e33c.tar.gz newsboat-b3cf168b1a928e092508f676f6be4664d971e33c.tar.zst newsboat-b3cf168b1a928e092508f676f6be4664d971e33c.zip |
Revert "improved code quality according to Minoru's advice"
This reverts commit d3b455c20337517fd085dc4af45d6e30b3142d59.
Diffstat (limited to 'src/controller.cpp')
-rw-r--r-- | src/controller.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/controller.cpp b/src/controller.cpp index 554ec3fb..e8e065e7 100644 --- a/src/controller.cpp +++ b/src/controller.cpp @@ -1319,10 +1319,10 @@ void controller::edit_urls_file() { /* Most editors check for unsaved changes when attempting to exit and * prompt to either save or discard them. If save was choosen without - * having write permissions a proper code will fail and stay open + * having write permissions a properly codd will fail and stay open * (like vim, nano, gedit, geany). However other editors (texmaker - * 5.0.1 and notepadqq 1.0.1) close (obviously without saving) but - * despite return 0. So we should not check this particular exit code. + * 5.0.1 and notepadqq 1.0.1) close but despite return 0. + * So we should not check this particular exit code. */ int unused __attribute__((unused)); unused = utils::run_interactively(cmdline, "controller::edit_urls_file"); |