fix issue#3: set semicolon to punctuation

Add syntax table entry for `;' as punctuation
This commit is contained in:
Thomas von Dein
2017-10-24 20:40:38 +02:00
parent 8927fd1c35
commit b4a8e6ba0b

View File

@@ -19,7 +19,7 @@
;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
;; USA ;; USA
;; Version: 0.02 ;; Version: 0.03
;; Author: T.v.Dein <tlinden@cpan.org> ;; Author: T.v.Dein <tlinden@cpan.org>
;; Keywords: files ;; Keywords: files
;; URL: https://github.com/tlinden/config-general-mode ;; URL: https://github.com/tlinden/config-general-mode
@@ -324,6 +324,7 @@ Argument LIMIT limits the search."
(modify-syntax-entry ?\` "\"\"" st) ;; make ` electric too (modify-syntax-entry ?\` "\"\"" st) ;; make ` electric too
(modify-syntax-entry ?< "." st) (modify-syntax-entry ?< "." st)
(modify-syntax-entry ?> "." st) (modify-syntax-entry ?> "." st)
(modify-syntax-entry ?\; "." st)
st) st)
"Syntax table for `config-general-mode'.") "Syntax table for `config-general-mode'.")