File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 82
82
" Syntax table used while in `dhall-mode' ." )
83
83
84
84
; ; define several category of keywords
85
- (defvar dhall-mode-keywords (concat " \\ _< " ( regexp-opt '(" if" " then" " else" " let" " in" " using" " as" )) " \\ _> " ))
85
+ (defvar dhall-mode-keywords (regexp-opt '(" if" " then" " else" " let" " in" " using" " as" ) 'symbols ))
86
86
87
87
(defvar dhall-mode-types
88
- (concat " \\ _< " ( regexp-opt '(" Optional" " Bool" " Natural" " Integer" " Double" " Text" " List" " Type" )) " \\ _> " ))
88
+ (regexp-opt '(" Optional" " Bool" " Natural" " Integer" " Double" " Text" " List" " Type" ) 'symbols ))
89
89
90
- (defvar dhall-mode-constants (concat " \\ _< " ( regexp-opt '(" True" " False" )) " \\ _> " ))
90
+ (defvar dhall-mode-constants (regexp-opt '(" True" " False" ) 'symbols ))
91
91
(defvar dhall-mode-numerals " [+\\ -][1-9]+" )
92
92
(defvar dhall-mode-doubles " [0-9]\. [0-9]+" )
93
93
(defvar dhall-mode-operators (regexp-opt '(" ->" " \\ [" " ]" " ," " ++" " #" " :" " =" " ==" " !=" " \\\\ \( " " λ" " ⫽" " )" " &&" " ||" " {" " }" " (" )))
You can’t perform that action at this time.
0 commit comments