-
Notifications
You must be signed in to change notification settings - Fork 81
Closed
Labels
makefileCaused by the makefile lexerCaused by the makefile lexer
Description
For Make lexer comments are not recognized in all contexts. Code for test:
# I'm comment (OK)
test = 5 # I'm comment (BAD)
$(info $(test)) # I'm comment (BAD)
clean: # I'm comment (BAD)
echo # I'm not comment (OK)Looks like the lexer is very simple (there is a more complex version in Notepad2 project).
Some results:
Refs:
https://www.gnu.org/software/make/manual/make.html#Makefile-Contents
https://www.gnu.org/software/make/manual/make.html#index-_0023-_0028comments_0029_002c-in-recipes
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
makefileCaused by the makefile lexerCaused by the makefile lexer


