1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:48:12 +00:00
serenity/Userland/Libraries/LibLine
asynts acdcf59a33 Everywhere: Remove unnecessary debug comments.
It would be tempting to uncomment these statements, but that won't work
with the new changes.

This was done with the following commands:

    find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec awk -i inplace '$0 !~ /\/\/#define/ { if (!toggle) { print; } else { toggle = !toggle } } ; $0 ~/\/\/#define/ { toggle = 1 }' {} \;

    find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec awk -i inplace '$0 !~ /\/\/ #define/ { if (!toggle) { print; } else { toggle = !toggle } } ; $0 ~/\/\/ #define/ { toggle = 1 }' {} \;
2021-01-25 09:47:36 +01:00
..
CMakeLists.txt Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
Editor.cpp Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00
Editor.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
InternalFunctions.cpp Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
KeyCallbackMachine.cpp Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
KeyCallbackMachine.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
Span.h Libraries: Add missing headers 2021-01-22 21:49:54 +01:00
StringMetrics.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
Style.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
SuggestionDisplay.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
SuggestionManager.cpp Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
SuggestionManager.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
VT.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
XtermSuggestionDisplay.cpp Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00