hcl-emacs / hcl-mode

Emacs major mode of HCL(Hashicorp Configuration Language)
GNU General Public License v3.0
27 stars 9 forks source link

fix: handle infinite loop if paren level never increases #6

Closed Fuco1 closed 1 year ago

Fuco1 commented 3 years ago

If the point is inside an unterminated heredoc, the paren level as reported by syntax-ppss will never increase because all the closing brackets are parsed as part of the string. In this case Emacs freezes as the while loop never terminates, eventually ending at the end of the file.