emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-29 b3814b43f60: (ruby-ts--predefined-variables): Fix the $` and $'


From: Dmitry Gutov
Subject: emacs-29 b3814b43f60: (ruby-ts--predefined-variables): Fix the $` and $' entries
Date: Sun, 22 Jan 2023 13:51:34 -0500 (EST)

branch: emacs-29
commit b3814b43f6017d48bde2ddd12821e83948ee19dc
Author: Dmitry Gutov <dgutov@yandex.ru>
Commit: Dmitry Gutov <dgutov@yandex.ru>

    (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.
---
 lisp/progmodes/ruby-ts-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]