Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
55d150f3
Commit
55d150f3
authored
Dec 15, 2008
by
Sam Steingold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(c-defun-name): Handle DEFFOO(name,...),
mostly for CLISP modules, but could also be useful elsewhere.
parent
af09cfd7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/progmodes/cc-cmds.el
lisp/progmodes/cc-cmds.el
+5
-0
No files found.
lisp/ChangeLog
View file @
55d150f3
2008-12-15 Sam Steingold <sds@gnu.org>
* progmodes/cc-cmds.el (c-defun-name): Handle DEFFOO(name,...),
mostly for CLISP modules, but could also be useful elsewhere.
2008-12-15 Juanma Barranquero <lekktu@gmail.com>
* face-remap.el (text-scale-mode-step, buffer-face-mode-face):
...
...
lisp/progmodes/cc-cmds.el
View file @
55d150f3
...
...
@@ -1732,6 +1732,11 @@ with a brace block."
(
c-backward-syntactic-ws
)
(
point
))))
((
looking-at
"DEF[a-zA-Z0-9_]* *( *\\([^, ]*\\) *,"
)
;; DEFCHECKER(sysconf_arg,prefix=_SC,default=, ...) ==> sysconf_arg
;; DEFFLAGSET(syslog_opt_flags,LOG_PID ...) ==> syslog_opt_flags
(
match-string-no-properties
1
))
(
t
;; Normal function or initializer.
(
when
(
c-syntactic-re-search-forward
"[{(]"
nil
t
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment