aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Gutov2019-06-10 03:50:44 +0300
committerDmitry Gutov2019-06-10 03:50:44 +0300
commit2a05c5dbd3eca91ef4b843d45f3e6868d28cdb33 (patch)
tree51f12476efec4096bba1d54441e3c4487d005ec2
parent5f5555da87fdd767b4ece9ac4b63ebd25985487d (diff)
downloademacs-2a05c5dbd3eca91ef4b843d45f3e6868d28cdb33.tar.gz
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>.
-rw-r--r--lisp/progmodes/ruby-mode.el2
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."
1814 (unless feature-name 1814 (unless feature-name
1815 (let ((init (save-excursion 1815 (let ((init (save-excursion
1816 (forward-line 0) 1816 (forward-line 0)
1817 (when (looking-at "require [\"']\\(.?*\\)[\"']") 1817 (when (looking-at "require [\"']\\(.*\\)[\"']")
1818 (match-string 1))))) 1818 (match-string 1)))))
1819 (setq feature-name (read-string "Feature name: " init)))) 1819 (setq feature-name (read-string "Feature name: " init))))
1820 (let ((out 1820 (let ((out