summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Gutov <dgutov@yandex.ru>2023-01-22 20:50:54 +0200
committerDmitry Gutov <dgutov@yandex.ru>2023-01-22 20:51:21 +0200
commitb3814b43f6017d48bde2ddd12821e83948ee19dc (patch)
tree78e4fb502e78bc02ca06b8ccf7e3adc91551bf8a
parentdb02cbdfe0214ed968e14319051506add08ca17b (diff)
downloademacs-b3814b43f6017d48bde2ddd12821e83948ee19dc.tar.gz
(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.
-rw-r--r--lisp/progmodes/ruby-ts-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/ruby-ts-mode.el b/lisp/progmodes/ruby-ts-mode.el
index 7e5125453e8..eff846f8585 100644
--- a/lisp/progmodes/ruby-ts-mode.el
+++ b/lisp/progmodes/ruby-ts-mode.el
@@ -128,7 +128,7 @@
(defvar ruby-ts--predefined-variables
(rx string-start
- (or "$!" "$@" "$~" "$&" "$‘" "$‘" "$+" "$=" "$/" "$\\" "$," "$;"
+ (or "$!" "$@" "$~" "$&" "$`" "$'" "$+" "$=" "$/" "$\\" "$," "$;"
"$." "$<" "$>" "$_" "$*" "$$" "$?" "$:" "$LOAD_PATH"
"$LOADED_FEATURES" "$DEBUG" "$FILENAME" "$stderr" "$stdin"
"$stdout" "$VERBOSE" "$-a" "$-i" "$-l" "$-p"