diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2019-06-10 03:50:44 +0300 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2019-06-10 03:50:44 +0300 |
commit | 2a05c5dbd3eca91ef4b843d45f3e6868d28cdb33 (patch) | |
tree | 51f12476efec4096bba1d54441e3c4487d005ec2 /lisp/progmodes/ruby-mode.el | |
parent | 5f5555da87fdd767b4ece9ac4b63ebd25985487d (diff) | |
download | emacs-2a05c5dbd3eca91ef4b843d45f3e6868d28cdb33.tar.gz emacs-2a05c5dbd3eca91ef4b843d45f3e6868d28cdb33.tar.bz2 emacs-2a05c5dbd3eca91ef4b843d45f3e6868d28cdb33.zip |
Omit the misplaced and unnecessary shyness qualifier
* lisp/progmodes/ruby-mode.el (ruby-find-library-file):
Omit the misplaced and unnecessary shyness qualifier.
Suggested by Mattias EngdegÄrd <mattiase@acm.org>.
Diffstat (limited to 'lisp/progmodes/ruby-mode.el')
-rw-r--r-- | lisp/progmodes/ruby-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index 80e809b9d63..8eadf018a67 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el @@ -1814,7 +1814,7 @@ statement around point." (unless feature-name (let ((init (save-excursion (forward-line 0) - (when (looking-at "require [\"']\\(.?*\\)[\"']") + (when (looking-at "require [\"']\\(.*\\)[\"']") (match-string 1))))) (setq feature-name (read-string "Feature name: " init)))) (let ((out |