]> git.eshelyaron.com Git - emacs.git/commitdiff
(ruby-ts--predefined-variables): Fix the $` and $' entries
authorDmitry Gutov <dgutov@yandex.ru>
Sun, 22 Jan 2023 18:50:54 +0000 (20:50 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Sun, 22 Jan 2023 18:51:21 +0000 (20:51 +0200)
* lisp/progmodes/ruby-ts-mode.el (ruby-ts--predefined-variables):
Fix the $` and $' entries, somehow replaced by curly quote.

Reported by Mattias Engdegård.

lisp/progmodes/ruby-ts-mode.el

index 7e5125453e84a41bc2f06ad9987df269a74c04d4..eff846f8585214456827671ec6b52b361afab169 100644 (file)
 
 (defvar ruby-ts--predefined-variables
   (rx string-start
-      (or "$!" "$@" "$~" "$&" "$‘" "$‘" "$+" "$=" "$/" "$\\" "$," "$;"
+      (or "$!" "$@" "$~" "$&" "$`" "$'" "$+" "$=" "$/" "$\\" "$," "$;"
           "$." "$<" "$>" "$_" "$*" "$$" "$?" "$:" "$LOAD_PATH"
           "$LOADED_FEATURES" "$DEBUG" "$FILENAME" "$stderr" "$stdin"
           "$stdout" "$VERBOSE" "$-a" "$-i" "$-l" "$-p"