diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-02-09 14:23:10 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-02-09 14:23:10 -0800 |
commit | b3fc7a3e763fb260cd932dc6aedbe7b4c810a73c (patch) | |
tree | 72495a45c9e58f16f6b09448f6956507da6ccf89 /lib-src | |
parent | c71e7cc113ed0d5f01aaa2e441a3e3c9fbeb9fa5 (diff) | |
parent | 9ffe7ddd5e1ba93f327cfe985e9476571d7a2873 (diff) |
Merge from origin/emacs-25
9ffe7dd * lisp/isearch.el (isearch-define-mode-toggle): Improve logic
16140f7 * lisp/menu-bar.el (menu-bar-options-menu): New search submenu
3db6adb * lisp/isearch.el (search-default-mode)
4ea1ea7 * lisp/isearch.el: Rename search-default-regexp-mode to search-default-mode
c77ffc8 Use monitor's resolution for positioning tooltips
49e5749 Fix file-notify-test on MS-Windows
be1d874 Fix issues found by auditing w32notify code
87ae218 Extend etags Ruby support for accessors
aa35257 Update publicsuffix.txt.
6816bff Ensure that Gnus dribble handling allows removing entries
691feae Be consistent when using encoded strings in nnimap data
3ed423b Display the decoded Gnus group name
5428b5b Use completion-ignore-case instead of defining command
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/etags.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c index 65720e85f4..796adaa5d0 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -4731,8 +4731,12 @@ Ruby_functions (FILE *inf) if (reader || writer || alias) { do { - char *np = cp; + char *np; + cp = skip_spaces (cp); + if (*cp == '(') + cp = skip_spaces (cp + 1); + np = cp; cp = skip_name (cp); if (*np != ':') continue; |