FUEL: this fix makes it so stack effects spread out over multiple lines highlight

db4
Björn Lindqvist 2015-08-05 01:41:33 +02:00 committed by John Benediktsson
parent c211d99073
commit fd3b401749
1 changed files with 2 additions and 2 deletions

View File

@ -184,7 +184,7 @@ these lines in your .emacs:
;;; Regexps galore:
;; Utility regexp used by other regexps to match a Factor symbol name
(setq-local symbol "\\(\\(?:\\sw\\|\\s_\\)+\\)")
(setq-local symbol "\\(\\(?:\\sw\\|\\s_\\|\\s(\\|\\s)\\)+\\)")
(setq-local ws+ "[ \n\t]+")
(setq-local symbols-to-semicolon "\\([^;\t]*\\)\\(;\\)")
@ -208,7 +208,7 @@ these lines in your .emacs:
('scan-error nil))
(let ((bracket-stop (point)))
(goto-char bracket-start)
(re-search-forward ".+" bracket-stop 'mv)))))))
(re-search-forward "\\(.\\|\n\\)+" bracket-stop 'mv)))))))
;; Excludes parsing words that are handled by other regexps
(defconst factor-parsing-words