Remove additions added in the split
This commit is contained in:
parent
6c310d2d5e
commit
c0caf5cea6
|
|
@ -165,16 +165,6 @@ struct AutocompleteResponse
|
||||||
* Symbol identifier
|
* Symbol identifier
|
||||||
*/
|
*/
|
||||||
ulong symbolIdentifier;
|
ulong symbolIdentifier;
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates an empty acknowledgement response
|
|
||||||
*/
|
|
||||||
static AutocompleteResponse ack()
|
|
||||||
{
|
|
||||||
AutocompleteResponse response;
|
|
||||||
response.completionType = "ack";
|
|
||||||
return response;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -381,4 +381,4 @@ options:
|
||||||
--socketFile FILENAME
|
--socketFile FILENAME
|
||||||
Use the given FILENAME as the path to the UNIX domain socket. Using
|
Use the given FILENAME as the path to the UNIX domain socket. Using
|
||||||
this switch is an error on Windows.`, programName);
|
this switch is an error on Windows.`, programName);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -70,8 +70,8 @@ string getConfigurationLocation()
|
||||||
*/
|
*/
|
||||||
void warnAboutOldConfigLocation()
|
void warnAboutOldConfigLocation()
|
||||||
{
|
{
|
||||||
const configPath = "~/.config/dcd".expandTilde;
|
version (linux) if ("~/.config/dcd".expandTilde().exists()
|
||||||
version (linux) if (configPath.exists && configPath.isFile)
|
&& "~/.config/dcd".expandTilde().isFile())
|
||||||
{
|
{
|
||||||
warning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
|
warning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
|
||||||
warning("!! Upgrade warning:");
|
warning("!! Upgrade warning:");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue