Revert "Get rid of unicode quotes (#1140)"

This reverts commit f78126bfd6. There
really is no need for such a massive change...
This commit is contained in:
Eelco Dolstra 2016-11-26 00:37:43 +01:00
parent f78126bfd6
commit 215b70f51e
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
96 changed files with 670 additions and 670 deletions

View file

@ -370,7 +370,7 @@ void ignoreException();
#define ANSI_RED "\e[31;1m"
/* Filter out ANSI escape codes from the given string. If 'nixOnly' is
/* Filter out ANSI escape codes from the given string. If nixOnly is
set, only filter escape codes generated by Nixpkgs' stdenv (used to
denote nesting etc.). */
string filterANSIEscapes(const string & s, bool nixOnly = false);
@ -391,15 +391,15 @@ string get(const T & map, const string & key, const string & def = "")
}
/* Call 'failure' with the current exception as argument. If 'failure'
/* Call failure with the current exception as argument. If failure
throws an exception, abort the program. */
void callFailure(const std::function<void(std::exception_ptr exc)> & failure,
std::exception_ptr exc = std::current_exception());
/* Evaluate the function 'f'. If it returns a value, call 'success'
with that value as its argument. If it or 'success' throws an
exception, call 'failure'. If 'failure' throws an exception, abort
/* Evaluate the function f. If it returns a value, call success
with that value as its argument. If it or success throws an
exception, call failure. If failure throws an exception, abort
the program. */
template<class T>
void sync2async(
@ -415,8 +415,8 @@ void sync2async(
}
/* Call the function 'success'. If it throws an exception, call
'failure'. If that throws an exception, abort the program. */
/* Call the function success. If it throws an exception, call
failure. If that throws an exception, abort the program. */
template<class T>
void callSuccess(
const std::function<void(T)> & success,