diff options
author | Leo Liu <sdl.web@gmail.com> | 2012-07-21 09:41:48 +0800 |
---|---|---|
committer | Leo Liu <sdl.web@gmail.com> | 2012-07-21 09:41:48 +0800 |
commit | 2c73e345cc666982dbcb9d73e4fdd5a3348d19bc (patch) | |
tree | 44606488ac39afff067e68c224f4171e3b6b2336 /lisp/progmodes/cc-cmds.el | |
parent | 3646bcd6b8d321bbcf08bf8204ad92bdd3f1f0da (diff) | |
download | emacs-2c73e345cc666982dbcb9d73e4fdd5a3348d19bc.tar.gz |
Use match-string-no-properties instead in c-defun-name
for consistency.
Diffstat (limited to 'lisp/progmodes/cc-cmds.el')
-rw-r--r-- | lisp/progmodes/cc-cmds.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/cc-cmds.el b/lisp/progmodes/cc-cmds.el index 3ec7386ece0..daa2e455c28 100644 --- a/lisp/progmodes/cc-cmds.el +++ b/lisp/progmodes/cc-cmds.el @@ -1832,9 +1832,9 @@ with a brace block." (kw-re (concat "\\(?:" c-symbol-key "\\)?:")) (stretches)) (when (c-syntactic-re-search-forward c-symbol-key bound t t t) - (push (match-string 0) stretches) + (push (match-string-no-properties 0) stretches) (while (c-syntactic-re-search-forward kw-re bound t t t) - (push (match-string 0) stretches))) + (push (match-string-no-properties 0) stretches))) (apply 'concat (nreverse stretches)))) (t |