File tree 2 files changed +5
-20
lines changed
2 files changed +5
-20
lines changed Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ let env : (string * (located_primitive * Types.datatype * pure)) list = [
251
251
252
252
" mod" , int_op (mod ) IMPURE ;
253
253
254
- (* for backwards compatability *)
254
+ (* For backwards compatability *)
255
255
" +." , float_op ( +. ) PURE ;
256
256
" -." , float_op ( -. ) PURE ;
257
257
" *." , float_op ( *. ) PURE ;
Original file line number Diff line number Diff line change 120
120
" with"
121
121
))
122
122
123
- ; ;; Added by yung-turabian 2025
124
123
(defconst links-keywords
125
124
; Not the best test
126
- (if (string-equal
125
+ (if (string-match
126
+ " Links version"
127
127
(shell-command-to-string (concat links-executable " --version" ))
128
- " Links version 0.9.9 (Burghmuirhead)\n "
129
- )
128
+ )
130
129
(split-string
131
130
(shell-command-to-string (concat links-executable " --print-keywords" ))
132
131
" \n " " " )
133
132
links-backup-keywords)
134
- )
135
-
136
-
137
- ; ;; Added by yung-turabian 2025
138
- (defconst links-keywords
139
- ; Not the best test
140
- (if (string-equal
141
- (shell-command-to-string (concat links-executable " --version" ))
142
- " Links version 0.9.9 (Burghmuirhead)\n "
143
- )
144
- (split-string
145
- (shell-command-to-string (concat links-executable " --print-keywords" ))
146
- " \n " " " )
147
- links-backup-keywords)
148
- )
133
+ )
149
134
150
135
151
136
(defconst links-font-lock-keywords
You can’t perform that action at this time.
0 commit comments