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