From: Dmitry Gutov Date: Sun, 22 Jan 2023 18:50:54 +0000 (+0200) Subject: (ruby-ts--predefined-variables): Fix the $` and $' entries X-Git-Tag: emacs-29.0.90~619 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b3814b43f60;p=emacs.git (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. --- 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"