Skip to content

Commit

Permalink
Revert "Support for Strings with single quote delimiters"
Browse files Browse the repository at this point in the history
This reverts commit 522433f.
  • Loading branch information
roadrunner1776 committed Sep 7, 2021
1 parent d5da43b commit 6fe271f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
4 changes: 0 additions & 4 deletions magik-indent.el
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,6 @@ is an operator."
"%" char
"@" at
"\"" string
"'" string1
"_" keyword
":" sym
"|" var-bar
Expand Down Expand Up @@ -510,9 +509,6 @@ is an operator."
(string "\"" string-finish
t stay)
(string-finish t neutral)
(string1 "'" string1-finish
t stay)
(string1-finish t neutral)
(comment t stay))
"A description of the lexical state transitions in Magik. This gets
compiled into a more efficient form by `init-magik-state-table()'.")
Expand Down
3 changes: 1 addition & 2 deletions magik-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -2112,8 +2112,7 @@ closing bracket into the new \"{...}\" notation."
(modify-syntax-entry ?< "." magik-mode-syntax-table)
(modify-syntax-entry ?> "." magik-mode-syntax-table)
(modify-syntax-entry ?& "." magik-mode-syntax-table)
(modify-syntax-entry ?\" "\"" magik-mode-syntax-table)
(modify-syntax-entry ?\' "\"" magik-mode-syntax-table))
(modify-syntax-entry ?\" "\"" magik-mode-syntax-table))

;;; package setup via setting of variable before load.
(and magik-method-name-mode
Expand Down

0 comments on commit 6fe271f

Please sign in to comment.