Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kconfig: remove '---help---' support

The conversion is done. No more user of '---help---'.

Cc: Ulf Magnusson <ulfalizer@gmail.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

+2 -2
+1 -1
scripts/checkkconfigsymbols.py
··· 34 34 REGEX_KCONFIG_DEF = re.compile(DEF) 35 35 REGEX_KCONFIG_EXPR = re.compile(EXPR) 36 36 REGEX_KCONFIG_STMT = re.compile(STMT) 37 - REGEX_KCONFIG_HELP = re.compile(r"^\s+(help|---help---)\s*$") 37 + REGEX_KCONFIG_HELP = re.compile(r"^\s+help\s*$") 38 38 REGEX_FILTER_SYMBOLS = re.compile(r"[A-Za-z0-9]$") 39 39 REGEX_NUMERIC = re.compile(r"0[xX][0-9a-fA-F]+|[0-9]+") 40 40 REGEX_QUOTES = re.compile("(\"(.*?)\")")
+1 -1
scripts/kconfig/lexer.l
··· 105 105 "endchoice" return T_ENDCHOICE; 106 106 "endif" return T_ENDIF; 107 107 "endmenu" return T_ENDMENU; 108 - "help"|"---help---" return T_HELP; 108 + "help" return T_HELP; 109 109 "hex" return T_HEX; 110 110 "if" return T_IF; 111 111 "imply" return T_IMPLY;