Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Support for Strings with single quote delimiters" #23

Merged
merged 1 commit into from
Sep 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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