diff --git a/doc/org.eclipse.cdt.doc.isv/guide/deprecated_API_removals.html b/doc/org.eclipse.cdt.doc.isv/guide/deprecated_API_removals.html index 28aa81029c7..1578ac3e565 100644 --- a/doc/org.eclipse.cdt.doc.isv/guide/deprecated_API_removals.html +++ b/doc/org.eclipse.cdt.doc.isv/guide/deprecated_API_removals.html @@ -45,6 +45,7 @@
  • Removal of CDT Core Options API.
  • TM Terminal has major changes to support new color and preference functionality.
  • Environment Variables are always case sensitive in CDT.
  • +
  • Environment variables no longer support \${ to avoid expanding.
  • Planned Removals after June 2022 @@ -285,6 +286,19 @@

  • org.eclipse.cdt.core.envvar.IEnvironmentVariableManager.isVariableCaseSensitive() removed.
  • +

    14. Environment variables no longer support \${ to avoid expanding.

    +

    + This change is not literally an api change but will impact your code if you used \${ to not + expand environment variables. It may impact your code if you import environment variables + and had to workaround path\${childPath} resolving to path${childPath}. See Bug 560330. +

    + +

    Future Deletions