(ruby-ts--predefined-variables): Fix the $` and $' entries
* lisp/progmodes/ruby-ts-mode.el (ruby-ts--predefined-variables): Fix the $` and $' entries, somehow replaced by curly quote. Reported by Mattias Engdegård.
This commit is contained in:
parent
db02cbdfe0
commit
b3814b43f6
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@
|
||||||
|
|
||||||
(defvar ruby-ts--predefined-variables
|
(defvar ruby-ts--predefined-variables
|
||||||
(rx string-start
|
(rx string-start
|
||||||
(or "$!" "$@" "$~" "$&" "$‘" "$‘" "$+" "$=" "$/" "$\\" "$," "$;"
|
(or "$!" "$@" "$~" "$&" "$`" "$'" "$+" "$=" "$/" "$\\" "$," "$;"
|
||||||
"$." "$<" "$>" "$_" "$*" "$$" "$?" "$:" "$LOAD_PATH"
|
"$." "$<" "$>" "$_" "$*" "$$" "$?" "$:" "$LOAD_PATH"
|
||||||
"$LOADED_FEATURES" "$DEBUG" "$FILENAME" "$stderr" "$stdin"
|
"$LOADED_FEATURES" "$DEBUG" "$FILENAME" "$stderr" "$stdin"
|
||||||
"$stdout" "$VERBOSE" "$-a" "$-i" "$-l" "$-p"
|
"$stdout" "$VERBOSE" "$-a" "$-i" "$-l" "$-p"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue