diff options
author | Leo Liu <sdl.web@gmail.com> | 2012-07-21 05:18:52 +0800 |
---|---|---|
committer | Leo Liu <sdl.web@gmail.com> | 2012-07-21 05:18:52 +0800 |
commit | 3646bcd6b8d321bbcf08bf8204ad92bdd3f1f0da (patch) | |
tree | f303c6c51e10128fed2cf2d8df6b9e6f45fe26be /lisp | |
parent | fe1a523fd9cecbaabc3215b030848f25f15a9c20 (diff) | |
download | emacs-3646bcd6b8d321bbcf08bf8204ad92bdd3f1f0da.tar.gz emacs-3646bcd6b8d321bbcf08bf8204ad92bdd3f1f0da.tar.bz2 emacs-3646bcd6b8d321bbcf08bf8204ad92bdd3f1f0da.zip |
* lisp/progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
Fixes: debbugs:7879
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 3 | ||||
-rw-r--r-- | lisp/progmodes/cc-cmds.el | 18 |
2 files changed, 13 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bb5590b1c39..f305d971a0f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2012-07-20 Leo Liu <sdl.web@gmail.com> + * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly. + (Bug#7879) + * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986). 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca> diff --git a/lisp/progmodes/cc-cmds.el b/lisp/progmodes/cc-cmds.el index 9c8c5633b80..3ec7386ece0 100644 --- a/lisp/progmodes/cc-cmds.el +++ b/lisp/progmodes/cc-cmds.el @@ -1826,14 +1826,16 @@ with a brace block." ;; DEFFLAGSET(syslog_opt_flags,LOG_PID ...) ==> syslog_opt_flags (match-string-no-properties 1)) - ;; Objective-C method starting with + or -. - ((and (derived-mode-p 'objc-mode) - (looking-at "[-+]\s*(")) - (when (c-syntactic-re-search-forward ")\s*" nil t) - (c-forward-token-2) - (setq name-end (point)) - (c-backward-token-2) - (buffer-substring-no-properties (point) name-end))) + ;; Objc selectors. + ((assq 'objc-method-intro (c-guess-basic-syntax)) + (let ((bound (save-excursion (c-end-of-statement) (point))) + (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) + (while (c-syntactic-re-search-forward kw-re bound t t t) + (push (match-string 0) stretches))) + (apply 'concat (nreverse stretches)))) (t ;; Normal function or initializer. |