1 new commit in cc-mode:
https://bitbucket.org/xemacs/cc-mode/commits/8e6823f66785/
Changeset: 8e6823f66785
User: acm
Date: 2017-05-30 16:58:53+00:00
Summary: c-defun-name: Return fully qualified method names when wanted in C++, etc.
* cc-cmds.el (c-defun-name): Use c-back-over-compound-identifier in place of
c-backward-token-2 near the end of the function.
Affected #: 1 file
diff -r 2384e48be6208267c13505dffac6a0d98b7bc568 -r
8e6823f66785d1de8e3724962e8e23273be7cd42 cc-cmds.el
--- a/cc-cmds.el
+++ b/cc-cmds.el
@@ -1807,7 +1807,7 @@
(c-backward-token-2)
(c-backward-syntactic-ws))
(setq name-end (point))
- (c-backward-token-2)
+ (c-back-over-compound-identifier)
(buffer-substring-no-properties (point) name-end)))))))))
(defun c-declaration-limits (near)
Repository URL:
https://bitbucket.org/xemacs/cc-mode/
--
This is a commit notification from
bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.